1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-21 06:53:01 +08:00
lvgl/examples/widgets/spinner/lv_example_spinner_1.py

7 lines
110 B
Python
Raw Normal View History

# Create a spinner
spinner = lv.spinner(lv.scr_act(), 1000, 60)
spinner.set_size(100, 100)
spinner.center()
2021-02-08 09:53:03 +01:00