column Gap
This function sets the column-gap property for all media devices.
It is recommended to use the predefined properties from the theme.
Example call:
columnGap { small }Parameters
value
provide a value of type ScaledValueProperty that defines the gap of the column, recommended to use predefined values of the theme.
open fun columnGap(sm: ScaledValueProperty? = null, md: ScaledValueProperty? = null, lg: ScaledValueProperty? = null, xl: ScaledValueProperty? = null)
Content copied to clipboard
This function sets the column-gap property for each media device independently.
It is recommended to use the predefined properties from the theme.
Example call:
columnGap(
sm = { small },
lg = { large }
)
Parameters
sm
provide a value of type ScaledValueProperty that defines the gap of the column for extra large media devices, recommended to use predefined values of the theme.