Skip to content

Instantly share code, notes, and snippets.

@apatronl
Created April 17, 2024 15:25
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/b511573213d4d4c856e86b793dcdf8f6 to your computer and use it in GitHub Desktop.
Save apatronl/b511573213d4d4c856e86b793dcdf8f6 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
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment