Any ideas on how to migrate away from EffectPublisher? #41
Muhammed9991
started this conversation in
General
Replies: 1 comment
-
The only way I can think of as of now is using Notification centre to send a notification inside .onReceive(NotificationCenter.default.publisher(for: "notificationName")) { _ in
viewStore.send(.someAction)
} I don't like this but not sure what another way would be. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In
LocationManagerDelegate
the library is usingEffectPublisher
:Which is then used to set the delegate of
CLLocationManager
.I've been playing around moving the library to 1.0.0 version but stuck on how we can remove EffectPublisher here? Any ideas from anyone?
Beta Was this translation helpful? Give feedback.
All reactions