Kshitij Patil
12/04/2020, 10:15 AMOutilnedTextField
with savedInstanceState (<textfield-saver>) { TextFieldValue(state.text) }
Putting app in background an reopening fixes this issue. I'm not sure if I'm doing any wrong or there's a subtle issue in composeVivek Sharma
12/04/2020, 10:25 AMjim
12/04/2020, 3:04 PMSam
12/04/2020, 6:10 PMalpha08
where the textfield won’t receive focus if a composable is on top, i.e. if you’ve created your own placeholder like in JetChat. The workaround is to put your placeholder behind the BasicTextField
within a Box
, instead of in front.robnik
12/15/2020, 2:19 PMTextField
the keyboard won't show up for me unless I explicitly pass in the KeyboardOptions.Kshitij Patil
12/15/2020, 2:30 PMsavedInstanceState
used to store TextFieldValue
. When I use simple remember
, this doesn't seem to happen.