You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
516 B
Python
23 lines
516 B
Python
#
|
|
# Arrange items in rows with wrap and place the items to get even space around them.
|
|
#
|
|
style = lv.style_t()
|
|
style.init()
|
|
style.set_flex_flow(lv.FLEX_FLOW.ROW_WRAP)
|
|
style.set_flex_main_place(lv.FLEX_ALIGN.SPACE_EVENLY)
|
|
style.set_layout(lv.LAYOUT_FLEX.value)
|
|
|
|
cont = lv.obj(lv.scr_act())
|
|
cont.set_size(300, 220)
|
|
cont.center()
|
|
cont.add_style(style, 0)
|
|
|
|
for i in range(8):
|
|
obj = lv.obj(cont)
|
|
obj.set_size(70, lv.SIZE.CONTENT)
|
|
|
|
label = lv.label(obj)
|
|
label.set_text("{:d}".format(i))
|
|
label.center()
|
|
|