flex

open fun flex(flex: Float): T

Sets flexGrow, flexShrink, and flexBasis at the same time.

When flex is a positive number, it makes the component flexible and it will be sized proportional to its flex value. So a component with flex set to 2 will take twice the space as a component with flex set to 1.

When flex is 0, the component is sized according to width and height and it is inflexible.

When flex is -1, the component is normally sized according width and height. However, if there's not enough space, the component will shrink to its minWidth and minHeight.

See https://yogalayout.dev/docs/flex for more information.

Default: 0