Lines Matching full:with
8 …ms and tracks, handle *grow* to make the item(s) fill the remaining space with respect to min/max …
12 Note that the flex layout feature of LVGL needs to be globally enabled with `LV_USE_FLEX` in `lv_co…
25 With the following functions you can set a Flex layout on any parent.
34 - `LV_FLEX_FLOW_ROW_WRAP` Place the children in a row with wrapping
35 - `LV_FLEX_FLOW_COLUMN_WRAP` Place the children in a column with wrapping
38 - `LV_FLEX_FLOW_ROW_WRAP_REVERSE` Place the children in a row with wrapping but in reversed order
39 - `LV_FLEX_FLOW_COLUMN_WRAP_REVERSE` Place the children in a column with wrapping but in reversed o…
53 - `LV_FLEX_ALIGN_SPACE_AROUND` items are evenly distributed in the track with equal space around th…
62 For example, there is 400 px remaining space and 4 objects with grow:
63 - `A` with grow = 1
64 - `B` with grow = 1
65 - `C` with grow = 2
69 Flex grow can be set on a child with `lv_obj_set_flex_grow(child, value)`. `value` needs to be >…
101 You can force Flex to put an item into a new line with `lv_obj_add_flag(child, LV_OBJ_FLAG_FLEX_IN_…