Lines Matching full:in
12 Note that the flex layout feature of LVGL needs to be globally enabled with `LV_USE_FLEX` in `lv_co…
16 - main direction: row or column, the direction in which the items are placed
18 - wrap: if there is no more space in the track a new track is started
32 - `LV_FLEX_FLOW_ROW` Place the children in a row without wrapping
33 - `LV_FLEX_FLOW_COLUMN` Place the children in a column without wrapping
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
36 - `LV_FLEX_FLOW_ROW_REVERSE` Place the children in a row without wrapping but in reversed order
37 - `LV_FLEX_FLOW_COLUMN_REVERSE` Place the children in a column without wrapping but in reversed ord…
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…
44 …e the items in their track on the main axis. E.g. flush the items to the right on `LV_FLEX_FLOW_RO…
45 …tems in their track on the cross axis. E.g. if the items have different height place them to the b…
46 - `track_cross_place` determines how to distribute the tracks (It's called `align-content` in CSS)
53 - `LV_FLEX_ALIGN_SPACE_AROUND` items are evenly distributed in the track with equal space around th…
56 - `LV_FLEX_ALIGN_SPACE_BETWEEN` items are evenly distributed in the track: first item is on the sta…