Skip to content

Instantly share code, notes, and snippets.

@jstart
Last active June 17, 2019 20: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 jstart/d0a874c7b9675027af8d11596d030184 to your computer and use it in GitHub Desktop.
Save jstart/d0a874c7b9675027af8d11596d030184 to your computer and use it in GitHub Desktop.
Specifying frame to allow render
struct ErrorView : View {
var body: some View {
ScrollView {
VStack {
ScrollView {
ForEach(0..<100) { _ in
Text("test")
}
} .frame(width: 300, height: 500)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment