Lines Matching refs:right_cont
74 lv_obj_t * right_cont = right_cont_create(main_cont); in lv_demo_ebike_home_create() local
81 lv_obj_set_width(right_cont, lv_pct(100)); in lv_demo_ebike_home_create()
82 lv_obj_set_flex_grow(right_cont, 1); in lv_demo_ebike_home_create()
86 lv_obj_set_size(right_cont, lv_pct(40), lv_pct(100)); in lv_demo_ebike_home_create()
87 lv_obj_set_style_min_width(right_cont, 150, 0); in lv_demo_ebike_home_create()
408 lv_obj_t * right_cont = lv_obj_create(parent); in right_cont_create() local
409 lv_obj_set_style_bg_opa(right_cont, 0, 0); in right_cont_create()
411 … lv_obj_set_flex_flow(right_cont, LV_DEMO_EBIKE_PORTRAIT ? LV_FLEX_FLOW_ROW : LV_FLEX_FLOW_COLUMN); in right_cont_create()
412 lv_obj_set_style_pad_ver(right_cont, 12, 0); in right_cont_create()
413 lv_obj_set_style_pad_hor(right_cont, 8, 0); in right_cont_create()
414 lv_obj_set_style_pad_gap(right_cont, 8, 0); in right_cont_create()
416 lv_obj_t * battery = lv_bar_create(right_cont); in right_cont_create()
440 lv_obj_t * dist = lv_obj_create(right_cont); in right_cont_create()
459 return right_cont; in right_cont_create()