feat(xml): add spinbox support (#8957)

Co-authored-by: Liam Howatt <30486941+liamHowatt@users.noreply.github.com>
This commit is contained in:
Gabor Kiss-Vamosi
2025-09-30 20:26:55 +02:00
committed by GitHub
parent 89d7d11a13
commit 1623876507
11 changed files with 336 additions and 10 deletions
+17
View File
@@ -0,0 +1,17 @@
<!--
Example
<lv_spinbox digit_count="5" dec_point_pos="3" value="12345"/>
-->
<widget>
<api>
<prop name="value" type="int"/>
<prop name="rollover" type="bool"/>
<prop name="digit_count" type="int"/>
<prop name="dec_point_pos" type="int"/>
<prop name="min_value" type="int"/>
<prop name="max_value" type="int"/>
<prop name="step" type="int"/>
<prop name="bind_value" type="subject" help="Connect a subject to the spinbox's value"/>
</api>
</widget>