Fixed
Status Update
Comments
sg...@google.com <sg...@google.com>
na...@google.com <na...@google.com> #4
The release notes documentation has been edited to clarify this change in behavior for line height.
To support non-standard text sizes, we encourage users to follow the Material design system and use a different style = LocalTextStyle.current.copy(lineHeight = TextUnit.Unspecified)
, or create a custom Typography
entirely.
pr...@google.com <pr...@google.com> #5
deleted
Description
Jetpack Compose version: compose.material3 1.3.0-alpha06
Material Library Version (M2, M3 or Both?): M3
Material Compose component used: compose.material3
Android Studio Build: Android Studio Jellyfish | 2023.3.1
Kotlin version: 1.9.23
The below sample code uses a button to switch between two
DateRangePickerState
s used by aDateRangePicker
. The states differ only by theirselectableDates
parameter where one state only allows previous dates to be selected, the other only allows future dates.Expected behavior is that the UI instantly updates according to the selectable dates when the button state parameter is changed (i.e. the button is pressed in the example).
Actual behavior is that only those months display the selectable dates correctly that are freshly scrolled into view. The dates of the months currently visible are only updated when scrolled out of view and back again into view.