Can’t make that work, I just get a blue rectangle for the whole size with no “bar”. Bar is not meant to work without complex draw or is it possible to get it in some primitive way?
bar = lv_bar_create(lv_scr_act());
lv_obj_align(bar, LV_ALIGN_TOP_MID, 0, 32);
lv_obj_set_size(bar, 175, 64);
lv_bar_set_range(bar, 0, 128);
lv_bar_set_value(bar, 70, LV_ANIM_OFF);