Home
last modified time | relevance | path

Searched refs:grow (Results 1 – 10 of 10) sorted by relevance

/lvgl-3.7.0/docs/layouts/
Dflex.md8 …handle wrapping, adjust the spacing between the items and tracks, handle *grow* to make the item(s…
19 - grow: if set on an item it will grow to fill the remaining space on the track.
20 The available space will be distributed among items respective to their grow value (larger value me…
59 ### Flex grow
61grow can be used to make one or more children fill the available space on the track. When more chi…
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 >…
Dgrid.md17 - free unit (FR): if set on track's size is set in `FR` it will grow to fill the remaining space on…
/lvgl-3.7.0/examples/layouts/flex/
Dindex.rst13 Demonstrate flex grow
19 Demonstrate flex grow.
/lvgl-3.7.0/src/extra/layouts/flex/
Dlv_flex.h99 void lv_obj_set_flex_grow(lv_obj_t * obj, uint8_t grow);
Dlv_flex.c116 void lv_obj_set_flex_grow(lv_obj_t * obj, uint8_t grow) in lv_obj_set_flex_grow() argument
118 lv_obj_set_style_flex_grow(obj, grow, 0); in lv_obj_set_flex_grow()
/lvgl-3.7.0/src/extra/themes/default/
Dlv_theme_default.c72 lv_style_t grow; member
382 style_init_reset(&styles->grow); in style_init()
383 lv_style_set_transform_width(&styles->grow, lv_disp_dpx(theme.disp, 3)); in style_init()
384 lv_style_set_transform_height(&styles->grow, lv_disp_dpx(theme.disp, 3)); in style_init()
758 lv_obj_add_style(obj, &styles->grow, LV_STATE_PRESSED); in theme_apply()
855 lv_obj_add_style(obj, &styles->grow, LV_PART_KNOB | LV_STATE_PRESSED); in theme_apply()
890 lv_obj_add_style(obj, &styles->grow, LV_PART_INDICATOR | LV_STATE_PRESSED); in theme_apply()
/lvgl-3.7.0/docs/widgets/core/
Dbtnmatrix.md27 It's similar to how the [`flex-grow`](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow) p…
/lvgl-3.7.0/env_support/cmsis-pack/
DREADME.md89 /*1: Enable grow on press*/
/lvgl-3.7.0/
DKconfig890 bool "Enable grow on press"
/lvgl-3.7.0/docs/
DCHANGELOG.md1388 - docs(flex) fix typo in flex grow section [`e5fafc4`](https://github.com/lvgl/lvgl/commit/e5fafc41…