Skip to content

Instantly share code, notes, and snippets.

@archieedwards
Last active May 25, 2020 14:17
Show Gist options
  • Save archieedwards/c5054035f25423b7e10fcd9a24e23920 to your computer and use it in GitHub Desktop.
Save archieedwards/c5054035f25423b7e10fcd9a24e23920 to your computer and use it in GitHub Desktop.
Simple Alert in SwiftUI
struct ContentView: View {
@State var showAlert = false
var body: some View {
Button(action: {
self.showAlert.toggle()
}, label: {
Text("SHOW ALERT")
})
.alert(isPresented: self.$showAlert, content: {
Alert(title: Text("I'm an alert"))
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment