refactor(flex): change the name of teh built-in flex layouts

This commit is contained in:
Gabor Kiss-Vamosi
2021-03-08 23:30:27 +01:00
parent 289f8e4bac
commit 94431f8aaf
13 changed files with 42 additions and 42 deletions

View File

@@ -19,7 +19,7 @@ void lv_example_scroll_2(void)
lv_obj_t * panel = lv_obj_create(lv_scr_act(), NULL);
lv_obj_set_size(panel, 280, 150);
lv_obj_set_scroll_snap_x(panel, LV_SCROLL_SNAP_CENTER);
lv_obj_set_layout(panel, &lv_flex_queue);
lv_obj_set_layout(panel, &lv_flex_row_nowrap);
lv_obj_center(panel);
uint32_t i;