Replies: 2 comments
-
I experience the same problem right now where I need to sync the credentials of a server in dependency A, which is later used in dependency B. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Do you actually need the the option to override your settings dependency in your live value of DependencyA? Just simple use your live value of settings directly in DependencyA. I have to call UserDefaults within 2-3 of my Dependencies. I simply just call UserDefaults directly instead of using the dependency value of UserDefaults. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
I have dependency
DependencyA
which needs aDriver
to perform its work.The problem is that to create a driver, I need the result of some other dependency (let's say
Settings
), which is an async call:Is it possible to have this sort of setup?
Beta Was this translation helpful? Give feedback.
All reactions