chore: many trivial spelling and layout fixes (#3008)
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
This commit is contained in:
@@ -4,17 +4,18 @@ def event_handler(e):
|
||||
if code == lv.EVENT.CLICKED:
|
||||
print("Button {:d} clicked".format(obj.get_child_id()))
|
||||
|
||||
|
||||
win = lv.win(lv.scr_act(), 60)
|
||||
btn1 = win.add_btn(lv.SYMBOL.LEFT, 40)
|
||||
btn1.add_event_cb(event_handler,lv.EVENT.ALL, None)
|
||||
btn1.add_event_cb(event_handler, lv.EVENT.ALL, None)
|
||||
win.add_title("A title")
|
||||
btn2=win.add_btn(lv.SYMBOL.RIGHT, 40)
|
||||
btn2.add_event_cb(event_handler,lv.EVENT.ALL, None)
|
||||
btn2.add_event_cb(event_handler, lv.EVENT.ALL, None)
|
||||
btn3 = win.add_btn(lv.SYMBOL.CLOSE, 60)
|
||||
btn3.add_event_cb(event_handler,lv.EVENT.ALL, None)
|
||||
btn3.add_event_cb(event_handler, lv.EVENT.ALL, None)
|
||||
|
||||
cont = win.get_content() #Content can be aded here
|
||||
label = lv.label(cont)
|
||||
cont = win.get_content() # Content can be added here
|
||||
label = lv.label(cont)
|
||||
label.set_text("""This is
|
||||
a pretty
|
||||
long text
|
||||
@@ -33,4 +34,3 @@ text to be
|
||||
sure it
|
||||
overflows.
|
||||
""")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user