Colton Idle
09/10/2023, 9:39 PMreadOnly
is true. Also fixed the keyboard not showing when readOnly
is changed from true to false while focused. (I34a19, b/246909589)
Version 1.6.0-alpha05 of anim, foundation, material2, runtime, ui
• Added PathEasing
to enable an arbitrary path to be supplied to an easing curve. (Idb4b9)
• Add overloads for BasicSecureTextField
that accept an immutable value and a callback to change that value, just like the current BasicTextField
API. (Ia4882) (Interesting. I wonder if this is like java swing secure text field...) 🤔
• Add Modifier.preferKeepClear()
to mark as composable as preferring to keep clear of floating windows on API 33 and above. (Ib51d5, b/297260115)
• Fling velocities in View components like ScrollView
and RecyclerView
are capped at ViewConfiguration.ScaledMaximumFlingVelocity
. Compose now contains its own version of maximumFlingVelocity
which now applies to Draggable
. (Ibf974)
• Added BasicTooltipBox
to compose.foundation
and updated PlainTooltipBox
and RichTooltipBox
to use TooltipBox
with new PlainTooltip
and RichTooltip
composables. (I79e1d)
• Added support for auto-mirrored icons when rendered in right-to-left layouts. (COOL!)
• Enable content capture in AndroidComposeViewAccessibilityDelegateCompat
. (Ib2969)
• Adds initial scaffolding to support platform drag and drop APIs. (If84ce)
• Add deviceId
into RotaryScrollEvent
(Iba3bf)
• Updated ui-tooling
Devices API to include newer devices (Ib25b4)
Version 1.2.0-alpha07 of m3
• SliderState
implements DraggableState
(I9b116)
• Change shape to be a required param. Rename position
to index
in shape helper function. (I34941)
• dynamicLightColorScheme
and dynamicDarkColorScheme
now return higher chroma colors for surface and surfaceContainer
roles. (I5e901)
• Fixed an issue where some components using Subcomposition (e.g. BottomSheetScaffold
) inside a Scaffold inside a LookaheadScope
were attempting to read their size too early. (I297b4, I871f1, b/295536718)ascii
09/10/2023, 9:44 PM