max Width
This function sets the max-width property of a component for all media devices.
example calls:
maxWidth { small } // use a predefined symbol
maxWidth { "2em" } // provide a custom valueParameters
value
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes like dev.fritz2.styling.theme.Sizes.normal or alike.
open fun maxWidth(sm: SizesProperty? = null, md: SizesProperty? = null, lg: SizesProperty? = null, xl: SizesProperty? = null)
Content copied to clipboard
This function sets the max-width property of a component for all media devices.
example calls:
maxWidth { small } // use a predefined symbol
maxWidth { "2em" } // provide a custom valueParameters
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