refactor(layout) rename place keywords to align

This commit is contained in:
Gabor Kiss-Vamosi
2021-04-24 16:48:24 +02:00
parent 8c44edf33e
commit 31474538ad
17 changed files with 166 additions and 167 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ void lv_example_flex_2(void)
static lv_style_t style;
lv_style_init(&style);
lv_style_set_flex_flow(&style, LV_FLEX_FLOW_ROW_WRAP);
lv_style_set_flex_main_place(&style, LV_FLEX_PLACE_SPACE_EVENLY);
lv_style_set_flex_main_place(&style, LV_FLEX_ALIGN_SPACE_EVENLY);
lv_style_set_layout(&style, LV_LAYOUT_FLEX);
lv_obj_t * cont = lv_obj_create(lv_scr_act());