Rick Clephas

Results 40 comments of Rick Clephas

Thanks @joreilly!! But that is all in Kotlin, right? In that case you can just use the coroutines code directly, no need for any wrappers 😄. The challenge would be...

@SvyatoslavScherbina done 👍🏻

Cool! Updated the name and squashed the commits into three new ones.

@demiurg906 would you like a PR for the FIR checkers (with similar improvements) for `@ObjCName` (#4815) as well?:

@philipphofmann I don't think that really solves the "problem". That PR uses similar logic to what I have used, which relies on a number of private APIs. I feel like...

I have been thinking about this a little and the short conclusion is that IMO this is more of a Combine - SwiftUI integration challenge than a Coroutines - Combine...

I am going to close this for now, as I don't think there is much that can be done in KMP-NativeCoroutines. Feel free to leave a comment if you have...

Thanks for the update! Interesting approach. One thing I noticed is that this relies on the ViewModel being recreated with the SwiftUI view. So depending on the logic in your...

Ah you are calling the `state` function from the view directly. Interesting.

Nice! You could even set the initial value to the current value from the `StateFlow`: ```swift @State var someState: AppViewModel.SomeState = appViewModel.someStateNativeValue ``` > would still prefer to have something...