requiredWidthIn
Android
public fun SubspaceModifier.requiredWidthIn(
min: Dp = Dp.Unspecified,
max: Dp = Dp.Unspecified,
): SubspaceModifier
Constrain the width of the content to be between min dp and max dp, disregarding the incoming measurement VolumeConstraints.
This is in contrast to SubspaceModifier.widthIn, which respects the parent's constraints. requiredWidthIn will ignore the minWidth and maxWidth from the incoming constraints.
Parameters
| min | The minimum width. |
| max | The maximum width. |