Home
last modified time | relevance | path

Searched refs:shadow_label (Results 1 – 2 of 2) sorted by relevance

/lvgl-3.7.0/examples/widgets/label/
Dlv_example_label_2.c16 lv_obj_t * shadow_label = lv_label_create(lv_scr_act()); in lv_example_label_2() local
17 lv_obj_add_style(shadow_label, &style_shadow, 0); in lv_example_label_2()
27 lv_label_set_text(shadow_label, lv_label_get_text(main_label)); in lv_example_label_2()
33 lv_obj_align_to(shadow_label, main_label, LV_ALIGN_TOP_LEFT, 2, 2); in lv_example_label_2()
Dlv_example_label_2.py12 shadow_label = lv.label(lv.scr_act()) variable
13 shadow_label.add_style(style_shadow, 0)
23 shadow_label.set_text(lv.label.get_text(main_label))
29 shadow_label.align_to(main_label, lv.ALIGN.TOP_LEFT, 2, 2)