Fixed
Status Update
Comments
ma...@google.com <ma...@google.com>
sg...@google.com <sg...@google.com>
na...@google.com <na...@google.com> #3
Thanks for the report!
pr...@google.com <pr...@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.
Description
Jetpack Compose version:1.2.1
Jetpack Compose component(s) used: DateRangePicker
Android Studio Build: AI-232.10300.40.2321.11567975
Kotlin version: 1.9.22
Steps to Reproduce or Code Sample to Reproduce:
1.Show date range picker
2.Update selected month on the state (displayedMonthMillis)
3.Nothing happens.
Same happens if initialDisplayedMonthMillis is set but the correct month is not displayed. I've checked on DatePicker.kt _displayedMonth.value is correctly set to right month but nothing happen on the ui.
Unless I misunderstood the purpose of this displayedMonthMillis
Example code from base project (only the MainActivity )