Skip to content

Instantly share code, notes, and snippets.

View dmi-ch's full-sized avatar

Dmitriy Chikhanov dmi-ch

  • Solanteq
  • Cyprus
View GitHub Profile
@dmi-ch
dmi-ch / SomeView.swift
Last active September 4, 2022 12:54
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