Hi LVGL team,
In this example I am taking into reference, example for Snapping :–
https://docs.lvgl.io/8.0/overview/scroll.html#id1
I am able to hide scrollbar using :–
lv_obj_set_scrollbar_mode(panel,LV_SCROLLBAR_MODE_OFF);
I am able to scroll left right using :–
lv_obj_set_scroll_dir(panel, LV_DIR_RIGHT|LV_DIR_LEFT);
lv_obj_scroll_by(panel,-90,0,LV_ANIM_OFF);
How to make this white portion of scrollbar as transparent ? Which API call to use for this :–
Please suggest.
Regards,
Dinesh