mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
21 lines
497 B
XML
21 lines
497 B
XML
<!--
|
|
Example
|
|
<lv_tabview active="3">
|
|
<lv_tabview-tab text="First">
|
|
<lv_button/>
|
|
</lv_tabview-tab/>
|
|
</lv_tabview>
|
|
-->
|
|
|
|
<widget>
|
|
<api>
|
|
<prop name="active" type="int" help="Zero based index of the tab to select"/>
|
|
<prop name="tab_bar_position" type="dir(top bottom left right)" help=""/>
|
|
<element name="tab_bar" type="obj" access="get">
|
|
</element>
|
|
<element name="tab" type="obj" access="add">
|
|
<arg name="text" type="string"/>
|
|
</element>
|
|
</api>
|
|
</widget>
|