Fixed Bug P2 Add Hotlist Status UpdateNo update yet.Descriptionii...@bdmcc.net created issue #1May 13, 2024 07:48AMJetpack Compose version: 2024.04.01 Material Library Version (M2, M3 or Both?): M3 v1.2.1 Material Compose component used: androidx.compose.material3.DatePicker Android Studio Build: Android Studio Jellyfish | 2023.3.1 Kotlin version: 1.9.23 Steps to Reproduce or Code Sample to Reproduce: Create a DatePicker with a value in a DatePickerDialog using DisplayMode.Input Tap input field Field is now focused but cursor is placed at the start instead of at the end This makes it inconvenient to change the date as you first have to move the cursor to the end, extra inconvenient for talkback users. Sample code: DatePickerDialog( onDismissRequest = {}, confirmButton = { TextButton(onClick = { }) { Text(stringResource(android.R.string.ok)) } }, ) { DatePicker( state = rememberDatePickerState( initialSelectedDateMillis = Instant.now().toEpochMilli(), initialDisplayMode = DisplayMode.Input ) ) } Issue summaryCommentsAll comments Oldest first sg...@google.com <sg...@google.com> Oct 10, 2024 08:42PMAccepted by sg...@google.com.ap...@google.com <ap...@google.com> #2Oct 14, 2024 09:02PMMarked as fixed.There is a report about it in kotlinlang Slack: https://kotlinlang.slack.com/archives/C01D6HTPATV/p1706005056105739 pr...@google.com <pr...@google.com> #3Oct 30, 2024 05:37PMThanks for the report! Add comment Comment
Description
Jetpack Compose version: 2024.04.01
Material Library Version (M2, M3 or Both?): M3 v1.2.1
Material Compose component used: androidx.compose.material3.DatePicker
Android Studio Build: Android Studio Jellyfish | 2023.3.1
Kotlin version: 1.9.23
Steps to Reproduce or Code Sample to Reproduce:
DatePicker
with a value in aDatePickerDialog
usingDisplayMode.Input
This makes it inconvenient to change the date as you first have to move the cursor to the end, extra inconvenient for talkback users.
Sample code: