0.11.0 #318
0.11.0
#318
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
New:
Filler
composable is like aSpacer
but fills its area with a character instead of a space.Box
without content provides the ability to render using drawing modifiers without needing an empty chidlren lambda.Modifier.aspectRatio
attempts to constrain a composable to an aspect ratio in either the vertical or horizontal direction.Modifier.offset
offsets the composable in its parent by the given coordinates.Modifier.fillMaxWidth
,Modifier.fillMaxHeight
,Modifier.fillMaxSize
,Modifier.wrapContentWidth
,Modifier.wrapContentHeight
,Modifier.wrapContentSize
, andModifier.defaultMinSize
help size composable measurement in relation to their parent.Modifier.weight
allows sizing a composable proportionally to others within the same parent.Row
andColumn
each feature an arrangement parameter which controls the placement of children on the main axis of the container.Changed:
Modifier
parameter is now universally calledmodifier
in the API.Fix:
This version works with Kotlin 1.9.22 by default.
This discussion was created from the release 0.11.0.
Beta Was this translation helpful? Give feedback.
All reactions