Where to flag isFirstRun and isLoggedIn?
Opened this issue · 1 comments
sirvon commented
Thanks for sharing this example setup!
I'm also working with RxFlow and I like what you have implemented so far.
Once the user, Installs and Runs the app for the first time, Signs up and Signs In.
Where/How did you plan on flagging these properties...
var isLoggedIn: Bool { return false }
var isFirstRun: Bool { return true }
thanks for your work, thus far.
sirvon commented
If i'm using ReSwift or some other Unidirectional/Flux/Redux-like State management framework,
shouldn't those flags be saved as apart of state? and not just a random userdefault saved?