Skip to content

Instantly share code, notes, and snippets.

@byaruhaf
Created September 26, 2023 02:49
Show Gist options
  • Save byaruhaf/83a0caf08a2d43fcd1336c62373224d5 to your computer and use it in GitHub Desktop.
Save byaruhaf/83a0caf08a2d43fcd1336c62373224d5 to your computer and use it in GitHub Desktop.
struct ContentView: View {
@State private var isPresented = false
var body: some View {
Button("Present!") {
isPresented.toggle()
}
.fullScreenCover(isPresented: $isPresented, content: FullScreenView.init)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment