Hello friends, I want to ask on how to use Swift U...
# multiplatform
c
Hello friends, I want to ask on how to use Swift UI with Kotlin Mutable State Flow in KMM. Currently in my Swift UI I have TextField for username like this
Copy code
TextField("Input username", ?)
As you might notice, I don't know how to properly setup that second argument so that when a user is typing his/her username on IOS, the mutable state flow in the shared module is updated as well (The second argument type for that
TextField
is
Binding<String>
)
🙌 1