Build `0.4.0-build210` is out with support for Kot...
# compose-desktop
k
Build
0.4.0-build210
is out with support for Kotlin 1.5.0
K 20
i
And
0.4.0-build211
with support for Kotlin 1.5.10 🙂
K 13
😍 2
c
Not super familiar with how the versioning works. github shows 0.3.2. Is that the latest release, and 0.4.0-build211 is a snapshot of sorts?
i
0.3.2 - the latest stable (M3) 0.4.0-build211 - the latest weekly (androidx-main snapshot)
👍 1
d
I have TextFields with
Copy code
onFocusChanged = { focusState ->
    visible = focusState == FocusState.hasFocus
},
(has been
FocusState.Active
) Funnily IDE gives me code completion for
hasFocus
but still pretends that it does not exist:
Unresolved reference: hasFocus
any ideas?
i
but still pretends that it does not exist
You should use this:
Copy code
visible = focusState.hasFocus
hasFocus
is not a static field 🙂
1