You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add NonNullFlowWrapper and NullableFlowWrapper, that are wrappers for Flows
that provides a more convenient API for subscribing to the Flows on Darwin targets (iOS, macOS, tvOS, watchOS)
// Kotlin codeval flow:StateFlow<Int>
// Swift codeNonNullFlowWrapper<KotlinInt>(flow: flow).subscribe(
scope: scope,
onValue:{print("Received ", $0)})