fix(bidi) fix tabview, textarea, label, btnmatrix, roller, dropdown with RTL base direction

This commit is contained in:
Gabor Kiss-Vamosi
2021-05-20 12:04:06 +02:00
parent a63ab1eef1
commit 1386edf2fb
15 changed files with 68 additions and 17 deletions

View File

@@ -11,7 +11,7 @@ void lv_example_flex_6(void)
lv_obj_set_style_base_dir(cont, LV_BASE_DIR_RTL, 0);
lv_obj_set_size(cont, 300, 220);
lv_obj_center(cont);
lv_obj_set_flex_flow(cont, LV_FLEX_FLOW_ROW_WRAP);
lv_obj_set_flex_flow(cont, LV_FLEX_FLOW_COLUMN_WRAP);
uint32_t i;
for(i = 0; i < 20; i++) {
@@ -23,4 +23,5 @@ void lv_example_flex_6(void)
lv_obj_center(label);
}
}
#endif