mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
6 lines
104 B
Python
6 lines
104 B
Python
bar1 = lv.bar(lv.screen_active())
|
|
bar1.set_size(200, 20)
|
|
bar1.center()
|
|
bar1.set_value(70, lv.ANIM.OFF)
|
|
|