fillMaxHeight
Source set: Common
public fun Modifier.fillMaxHeight(
@FloatRange(from = 0.0, to = 1.0) fraction: Float = 1f
): Modifier
Have the content fill (possibly only partially) the Constraints.maxHeight of the incoming measurement constraints, by setting the minimum height and the maximum height to be equal to the maximum height multiplied by fraction. Note that, by default, the fraction is 1, so the modifier will make the content fill the whole available height. If the incoming maximum height is Constraints.Infinity this modifier will have no effect.
Example usage:
Parameters
| fraction | The fraction of the maximum height to use, between 0 and 1, inclusive. |