Last active
September 4, 2020 08:09
-
-
Save aataraxiaa/e2b4807388b459d68652d3543bfc6f59 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
| struct ContentView: View { | |
| @State private var appSetupState = "App NOT setup ☹️" | |
| // #1 | |
| @AppStorage("needsAppOnboarding") private var needsAppOnboarding: Bool = true | |
| var body: some View { | |
| // #2 | |
| mainView.onAppear { | |
| if !needsAppOnboarding { | |
| // Scenario #2: User has completed app onboarding | |
| appSetupState = "App setup 😀" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment