mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
c60ed68e94
* adding micropython examples * adding micropython examples
7 lines
110 B
Python
7 lines
110 B
Python
# Create a spinner
|
|
spinner = lv.spinner(lv.scr_act(), 1000, 60)
|
|
spinner.set_size(100, 100)
|
|
spinner.center()
|
|
|
|
|