mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
17 lines
529 B
XML
17 lines
529 B
XML
<!--
|
|
Example
|
|
<lv_dropdown options="option1\noption2" dir="left">
|
|
<lv_dropdown-list style="red"/>
|
|
</lv_dropdown>
|
|
-->
|
|
|
|
<widget>
|
|
<api>
|
|
<prop name="text" type="string" help="Show it instead of the selected options"/>
|
|
<prop name="options" type="string" help="The options as a \n separated string"/>
|
|
<prop name="selected" type="int" help="The index of the selected option"/>
|
|
<prop name="symbol" type="string" help="The symbol, usually a caret"/>
|
|
<element name="list" access="get" help=""/>
|
|
</api>
|
|
</widget>
|