mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
14 lines
676 B
Python
14 lines
676 B
Python
label1 = lv.label(lv.scr_act())
|
|
label1.set_long_mode(lv.label.LONG.BREAK) # Break the long lines
|
|
label1.set_recolor(True) # Enable re-coloring by commands in the text
|
|
label1.set_align(lv.label.ALIGN.CENTER) # Center aligned lines
|
|
label1.set_text("#000080 Re-color# #0000ff words# #6666ff of a# label " +
|
|
"and wrap long text automatically.")
|
|
label1.set_width(150)
|
|
label1.align(None, lv.ALIGN.CENTER, 0, -30)
|
|
|
|
label2 = lv.label(lv.scr_act())
|
|
label2.set_long_mode(lv.label.LONG.SROLL_CIRC) # Circular scroll
|
|
label2.set_width(150)
|
|
label2.set_text("It is a circularly scrolling text. ")
|
|
label2.align(None, lv.ALIGN.CENTER, 0, 30) |