Created
September 13, 2018 14:01
-
-
Save benjohnde/b2b69bc8c8a38a42b614a76c2f0c87f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RxFlow | |
public class BootstrapViewModel: Stepper { | |
// MARK: - Init | |
public init() { | |
self.step.accept(BootstrapStep.welcome) | |
} | |
// MARK: - Navigation functions | |
public func navigateToCustomization() { | |
self.step.accept(BootstrapStep.customize) | |
} | |
public func exitBootstrapFlow() { | |
self.step.accept(BootstrapStep.finish) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment