Skip to content

Instantly share code, notes, and snippets.

@apatronl
Created April 17, 2024 15:40
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 apatronl/101191e14018d34c17b8070cb1f44d03 to your computer and use it in GitHub Desktop.
Save apatronl/101191e14018d34c17b8070cb1f44d03 to your computer and use it in GitHub Desktop.
struct ContentView: View {
@State private var showAlert: Bool = false
var body: some View {
Button("Show alert") {
showAlert = true
}.alert("Hello!", isPresented: $showAlert, actions: {})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment