Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created August 27, 2020 15:46
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 BetterProgramming/ec800309f95a4c371728a7320c06c569 to your computer and use it in GitHub Desktop.
Save BetterProgramming/ec800309f95a4c371728a7320c06c569 to your computer and use it in GitHub Desktop.
//alert with the option to dismiss
.alert(isPresented:$showingAlert) {
Alert(title: Text("Are you sure you want to leave?"),
message: Text("We'll miss you!"),
primaryButton: .default(Text("Leave")) {
self.presentationMode.wrappedValue.dismiss()
},
secondaryButton: .cancel())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment