min Width
This function sets the min-width property of a component for all media devices.
example calls:
minWidth { small } // use a predefined symbol
minWidth { "2em" } // provide a custom value
Parameters
value
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes like dev.fritz2.styling.theme.Sizes.normal or alike.
open fun minWidth(sm: SizesProperty? = null, md: SizesProperty? = null, lg: SizesProperty? = null, xl: SizesProperty? = null)
Content copied to clipboard
This function sets the min-width property of a component for all media devices.
example calls:
minWidth { small } // use a predefined symbol
minWidth { "2em" } // provide a custom value
Parameters
lg
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes for large media devices
md
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes for medium sized media devices
sm
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes for small media devices
xl
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes for extra large media devices