1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/examples/widgets/textarea/lv_example_textarea_1.py
Gabor Kiss-Vamosi 7bec13c2b9 update asserts
2021-02-08 09:53:03 +01:00

13 lines
533 B
Python

def event_handler(obj, event):
if event == lv.EVENT.VALUE_CHANGED:
print("Value: %s" % obj.get_text())
elif event == lv.EVENT.LONG_PRESSED_REPEAT:
# For simple test: Long press the Text are to add the text below
ta1.add_text("\n\nYou can scroll it if the text is long enough.\n")
ta1 = lv.ta(lv.scr_act())
ta1.set_size(200, 100)
ta1.align(None, lv.ALIGN.CENTER, 0, 0)
ta1.set_cursor_type(lv.CURSOR.BLOCK)
ta1.set_text("A text in a Text Area") # Set an initial text
ta1.set_event_cb(event_handler)