I was out on holiday last week... but new compose versions dropped š
1.5.0 stable of anim, foundation, material2, runtime, ui
Version 1.6.0-alpha03 of anim, foundation, material2, runtime
⢠New type of enter/exit transition that scales the content based on the size of the animating container during enter & exit animation.
LookaheadScope
Composable fun and interface are now stable. (
Ifb2ce)
⢠Added support for configuring
privateImeOptions
(
Idb772) (idk what this is yet, but hope that its somehow related to password autofill not working in compose)
⢠Fixed text fields showing keyboard and being editable when
readOnly
is true. Also fixed the keyboard not showing when
readOnly
is changed from true to false while focused. (
I34a19,
b/246909589)
⢠Material2 components now have a separate API to pass
windowInsets
to support edge-to-edge functionality in android. Unlike material3 components, material2 components do not support insets by default and the value should be passed manually. Refer to the corresponding samples for guidance. (
I655e8) (OH HECK YEAH)
⢠Fix new
CompositionLocalProvider
optimization (
3118e88)
⢠Correct how movable content nodes are disassembled. (
5e3d59b)
Version 1.2.0-alpha05 of material3
⢠Updates to the Checkbox and
TriStateCheckbox
colors. The
CheckboxDefaults.colors()
disabledUncheckedColor
now only affects the border of the checkbox. Special cases that require you to set the internal box color when disabled and unchecked requires a custom constructed instance of a
CheckboxColors
with the desired color values. (
I77d17,
b/291943198)