35 lines
1007 B
XML
35 lines
1007 B
XML
<component>
|
|
|
|
<gradients>
|
|
<horizontal_gradient name="grad1" >
|
|
<stop color="#ff0000" frac="30%" opa="100%"/>
|
|
<stop color="#00ff00" frac="200" opa="100%"/>
|
|
</horizontal_gradient>
|
|
</gradients>
|
|
|
|
<consts>
|
|
<px name="size" value="100%"/>
|
|
</consts>
|
|
|
|
<api>
|
|
<prop name="title" type="string" default="No title"/>
|
|
<prop name="action" type="string" default="No action"/>
|
|
<prop name="bg_color" type="color" default="0xcccccc"/>
|
|
<prop name="btn_rel_style" type="style" />
|
|
<prop name="btn_pr_style" type="style" />
|
|
</api>
|
|
|
|
<styles>
|
|
<style name="gray" bg_grad="grad1"/>
|
|
<style name="blue" bg_color="0x0000ff"/>
|
|
</styles>
|
|
|
|
<view extends="lv_obj" style_radius="3" width="#size" height="content" styles="gray" style_bg_color="$bg_color" >
|
|
<lv_label translation_tag="$title" align="left_mid"/>
|
|
<my_button btn_text="$action" align="right_mid">
|
|
<style name="$btn_rel_style"/>
|
|
<style name="$btn_pr_style" selector="pressed"/>
|
|
</my_button>
|
|
</view>
|
|
</component>
|