Skip to content

Instantly share code, notes, and snippets.

@laevandus
Last active November 30, 2019 10:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laevandus/b1bc5a2dcb5a46eea09d5ceaefaef84c to your computer and use it in GitHub Desktop.
Save laevandus/b1bc5a2dcb5a46eea09d5ceaefaef84c to your computer and use it in GitHub Desktop.
struct LoginView: View {
@EnvironmentObject var appFlowCoordinator: AppFlowCoordinator
var body: some View {
ZStack {
Button(action: appFlowCoordinator.showMainView) {
Text("Login")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment