Assigned
Status Update
Comments
ha...@google.com <ha...@google.com>
mi...@agilebits.com <mi...@agilebits.com> #2
Seeing the same issue in ModalBottomSheet from material3-android -> 1.4.0-alpha05
.
Description
Jetpack Compose version: BOM 2024.09.02 (Compose 1.7.2 and material 3)
Jetpack Compose component(s) used:
Android Studio Build: Build #AI-241.19072.14.2412.12360217, built on September 12, 2024
Kotlin version: 1.9.0
Steps to Reproduce or Code Sample to Reproduce:
I am building an autocomplete pop-up picker based on
androidx.compose. material3.samples.EditableExposedDropdownMenuSample
sample. When the user types something that starts with@
theExposedDropdownMenuBox
expands offering options according to the text entered after the@
. I've observed an issue with the focus:TextField
, everything works as expected.TextField
, every time theExposedDropdownMenuBox
expands captures the focus and the user is no longer able to continue typing.TextField
receives the focus, and the cursor blinks.@
.ExposedDropdownMenuBox
expands.ExposedDropdownMenuBox
being impossible to continue introducing text in the 'TextField'.ExposedDropdownMenuBox
I also have identified that strange things happen if for any reason the
ExposedDropdownMenuBox
expands using a dedicated button.This might be related to: https://issuetracker.google.com/issues/369237326
Sample code: