android compose text field wrong keyboard opens when app opens from background
hey so i have a very weird problem with Jetpack Compose TextField. i have this component here:
@Composable
fun AppTextField(
modifier: Modifier = Modifier,
value: String,
label: String,
singleLine: Boolean = true,
readOnly: Boolean = false,
enabled: Boolean = true,
colors: TextFieldColors? = null,
minLines: Int = 1,
keyboardType: KeyboardType,
visualTransformation: VisualTransformation = VisualTransformation.None,
trailingIcon: @Composable (() ->...