mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
6 lines
148 B
Python
6 lines
148 B
Python
bar1 = lv.bar(lv.scr_act())
|
|
bar1.set_size(200, 30)
|
|
bar1.align(None, lv.ALIGN.CENTER, 0, 0)
|
|
bar1.set_anim_time(1000)
|
|
bar1.set_value(100, lv.ANIM.ON)
|