0.10.0 #247
0.10.0
#247
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
New:
Support Kotlin 1.9.20 via JetBrains Compose compiler 1.5.3.
@MosaicComposable
annotation restricts composable function usage to those meant for Mosaic(e.g., our
Text
) or general-purpose (e.g., Compose'sremember
). In most cases the Composecompiler can infer this automatically, but it's available for explicit use if needed.
LocalTerminal
composition local provides the size of the terminal if it can be detected.If the size changes, your function will automatically be recomposed with the new values.
Row
,Column
, andBox
now support horizontal and vertical alignment of their children.Add
AnnotatedString
withSpanStyle
for string customization. Instead of writing a series ofText
functions in aRow
, emit a singleText
with formatting changes within the string.Spacer
node for occupying space within layouts.Constraints and intrinsics are now available in the layout system.
This version works with Kotlin 1.9.20 by default.
This discussion was created from the release 0.10.0.
Beta Was this translation helpful? Give feedback.
All reactions