StefMa
07/26/2021, 8:00 AMDialogFragment
which creates an AlertDialog
with the MaterialAlertDialogBuilder
.
The customView I created for the AlertDialog
is created with a ComposeView
. Inside this View I create a OutlinedTextField
.
This "works" and the correct view show up.
But unfortunately, the Keyboard does not show up on click on the TextField
😱
I tried it already with the FocusRequester
, and with a different AlertDialog
(from androidx instead of material package). No luck.
I moved the ComposeView into a "normal" Fragment
. There, everything works as expected.
So I guess it is a DialogFragment
related issue... Can someone help me out here?
Is this a bug? 🤔Colton Idle
07/26/2021, 1:22 PM