Hello, does anyone know how to resolve below problem.
While typing, converted words are disappeared.
Keyboard soft: Super ATOK ULTIAS
Copy code
@Composable
fun SimpleFilledTextFieldSample() {
var text by remember { mutableStateOf("Hello") }
TextField(
value = text,
onValueChange = { text = it },
label = { Text("Label") }
)
}