Fixed
Status Update
Comments
ma...@google.com <ma...@google.com>
sg...@google.com <sg...@google.com>
sg...@google.com <sg...@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.
na...@google.com <na...@google.com> #5
deleted
Description
Jetpack Compose component used: Date Picker
Android Studio Build: AI-231.9392.1.2311.11076708
Kotlin version: 1.9.10
Steps to Reproduce or Code Sample to Reproduce:
Create a Date Picker with initial display mode, DisplayMode.Input
```
@OptIn(ExperimentalMaterial3Api::class)
@Preview
@Composable
fun DatePickerComponent() {
val state = rememberDatePickerState(initialDisplayMode = DisplayMode.Input)
DatePicker(state = state)
}
```
There's no way to modify the date format for the date input field. I've looked at the code and calculates the date format depending on the Locale. Please expose a parameter to modify the date format for the date input field.