Created
December 31, 2020 19:05
-
-
Save azamsharp/d5af2bc9cbe26f6aec9ecf6b7e4be316 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct ViewB: View { | |
@Binding var rootActive: Bool | |
var body: some View { | |
VStack { | |
Spacer() | |
Text("View B") | |
.font(.largeTitle) | |
NavigationLink("Go to View C", destination: ViewC(rootActive: $rootActive)) | |
Spacer() | |
} | |
.frame(maxWidth: .infinity, maxHeight: .infinity) | |
.background(Color.orange) | |
.edgesIgnoringSafeArea(.all) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment