Steve
05/11/2021, 10:39 PMknthmn
05/12/2021, 1:37 AMval interactionSource = remember { MutableInteractionSource() }
val focused = interactionSource.collectIsFocusedAsState()
OutlinedTextField(
value = text,
onValueChange = { text = it },
interactionSource = interactionSource
)
If you need more know more, you can observe InteractionSource.interactions
directlySteve
05/12/2021, 10:34 AMknthmn
05/13/2021, 1:51 AM