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_flex_5(void)
lv_obj_t * cont = lv_obj_create(lv_scr_act(), NULL);
lv_obj_set_size(cont, 300, 220);
lv_obj_align(cont, NULL, LV_ALIGN_CENTER, 0, 0);
lv_obj_set_layout(cont, &lv_flex_inline);
lv_obj_set_layout(cont, &lv_flex_row_wrap);
uint32_t i;
for(i = 0; i < 9; i++) {