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

9 lines
105 B
Python
Raw Normal View History

2021-02-08 09:53:03 +01:00
# Create an Arc
arc = lv.arc(lv.scr_act())
arc.set_end_angle(200)
2021-02-08 09:53:03 +01:00
arc.set_size(150, 150)
arc.center()