Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Last active December 31, 2020 19:09
Show Gist options
  • Save azamsharp/ec0df89ac4e3629577b83318fbdf60f6 to your computer and use it in GitHub Desktop.
Save azamsharp/ec0df89ac4e3629577b83318fbdf60f6 to your computer and use it in GitHub Desktop.
struct ViewC: View {
@Binding var rootActive: Bool
var body: some View {
VStack {
Text("View C")
Button("Go to View A") {
rootActive = false
}
}.frame(maxWidth: .infinity, maxHeight: .infinity)
.background(Color.yellow)
.edgesIgnoringSafeArea(.all)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment