1<component>
2	<consts>
3		<color name="light_blue" value="0xbbbbff"/>
4		<color name="dark_blue" value="0x000080"/>
5	</consts>
6
7	<styles>
8		<style name="btn_style" bg_color="#dark_blue" bg_opa="150"/>
9		<style name="btn_pr_style" bg_opa="255"/>
10	</styles>
11
12	<view extends="lv_obj" width="280" height="content" style_bg_color="#light_blue">
13		<lv_label text="Hello"/>
14		<my_card title="Card 1"
15				 y="0"
16				 btn_rel_style="btn_style"
17				 btn_pr_style="btn_pr_style"/>
18
19		<my_card y="85"
20				 bg_color="0xffaaaa"
21				 action="Apply"
22				 btn_rel_style="btn_style"
23				 btn_pr_style="btn_pr_style"/>
24	</view>
25</component>
26