Home
last modified time | relevance | path

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

/lvgl-latest/examples/scroll/
Dlv_example_scroll_4.c57 static lv_style_t style_scrolled; in lv_example_scroll_4() local
58 lv_style_init(&style_scrolled); in lv_example_scroll_4()
59 lv_style_set_width(&style_scrolled, 8); in lv_example_scroll_4()
60 lv_style_set_bg_opa(&style_scrolled, LV_OPA_COVER); in lv_example_scroll_4()
63 lv_obj_add_style(obj, &style_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in lv_example_scroll_4()
Dlv_example_scroll_4.py55 style_scrolled = lv.style_t() variable
56 style_scrolled.init()
57 style_scrolled.set_width(8)
58 style_scrolled.set_bg_opa(lv.OPA.COVER)
61 obj.add_style(style_scrolled, lv.PART.SCROLLBAR | lv.STATE.SCROLLED)