Skip to content

Instantly share code, notes, and snippets.

@hlung
Created February 26, 2020 08:23
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 hlung/7f1638b170e9bde4a0b35b420dc0490d to your computer and use it in GitHub Desktop.
Save hlung/7f1638b170e9bde4a0b35b420dc0490d to your computer and use it in GitHub Desktop.
@State private var showModal = false
var body: some View {
Button(action: { self.showModal.toggle() }) {
HStack {
Text("Show MODAL")
Spacer()
Text("〉")
}
}.sheet(isPresented: $showModal) {
Text("YAY MODAL")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment