Last active
March 9, 2021 02:04
-
-
Save paulhimes/e2634a5ab11fda189318456079c86f88 to your computer and use it in GitHub Desktop.
OnLayout Tutorial 05
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 MainView: View { | |
/// Controls the amount of padding above the scroll view's | |
/// content. | |
@State var titleBarHeight: CGFloat = 123 | |
var body: some View { | |
ScrollView { | |
HStack { | |
Spacer() | |
Text("ScrollView Content") | |
.multilineTextAlignment(.center) | |
.foregroundColor(.white) | |
.background(Color.blue.brightness(0.2)) | |
Spacer() | |
} | |
/// Pad the top of the content based on the value | |
/// of `titleBarHeight`. | |
.padding(.top, titleBarHeight) | |
} | |
.background(Color.blue) | |
.overlay( | |
TitleBar() | |
.background( | |
/// `proxy` will contain the size of the | |
/// title bar view. | |
GeometryReader { proxy in | |
Color.clear | |
/// TODO: Use the proxy here. | |
} | |
), | |
alignment: .top | |
) | |
.edgesIgnoringSafeArea(.all) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment