Skip to content

Instantly share code, notes, and snippets.

@dmi-ch
Last active September 4, 2022 12:54
Show Gist options
  • Save dmi-ch/dba914762af69e2c8e1a82f26635348e to your computer and use it in GitHub Desktop.
Save dmi-ch/dba914762af69e2c8e1a82f26635348e to your computer and use it in GitHub Desktop.
ScrollView shrink to fit content
@State private var scrollViewContentSize: CGSize = .zero
ScrollView {
VStack {}
.background(
GeometryReader { geo -> Color in
DispatchQueue.main.async {
scrollViewContentSize = geo.size
}
return Color.clear
}
)
}.frame(
maxHeight: scrollViewContentSize.height
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment