Home
last modified time | relevance | path

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

/lvgl-latest/examples/styles/
Dlv_example_style_11.c31 lv_obj_t * obj_base = lv_obj_create(lv_scr_act()); in lv_example_style_11() local
32 lv_obj_add_style(obj_base, &style_base, 0); in lv_example_style_11()
33 lv_obj_align(obj_base, LV_ALIGN_LEFT_MID, 20, 0); in lv_example_style_11()
35 lv_obj_t * label = lv_label_create(obj_base); in lv_example_style_11()
Dlv_example_style_11.py27 obj_base = lv.obj(lv.scr_act()) variable
28 obj_base.add_style(style_base, 0)
29 obj_base.align(lv.ALIGN.LEFT_MID, 20, 0)
31 label = lv.label(obj_base)