acid-drop/lib/lvgl/examples/layouts/flex/lv_example_flex_4.py

17 lines
307 B
Python
Raw Normal View History

2024-05-23 18:42:03 -04:00
#
# Reverse the order of flex items
#
cont = lv.obj(lv.scr_act())
cont.set_size(300, 220)
cont.center()
cont.set_flex_flow(lv.FLEX_FLOW.COLUMN_REVERSE)
for i in range(6):
obj = lv.obj(cont)
obj.set_size(100, 50)
label = lv.label(obj)
label.set_text("Item: " + str(i))
label.center()