Skip to content

Instantly share code, notes, and snippets.

@emma-k-alexandra
Created December 7, 2020 05:21
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 emma-k-alexandra/7a0c46ae48e142d28cb30b859cc793d1 to your computer and use it in GitHub Desktop.
Save emma-k-alexandra/7a0c46ae48e142d28cb30b859cc793d1 to your computer and use it in GitHub Desktop.
var body: some View {
VStack {
GeometryReader { geometry in
// Needs to be .topLeading so we can modify alignments on top and leading
ZStack(alignment: .topLeading) {
self.zStackViews(geometry)
}
.background(calculateHeight($height))
}
}.frame(height: height)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment