Can anyone tell me how to use FocusState with the ...
# compose
n
Can anyone tell me how to use FocusState with the latest version of focus? I want to determine if my TextField is in the focus state
k
Pass your own
MutableInteractionSource
into the
TextField
and observe it using
InteractionSource.collectIsFocusedAsState()
m
@Anang Kur
1