Last active
June 17, 2019 20:21
-
-
Save jstart/d0a874c7b9675027af8d11596d030184 to your computer and use it in GitHub Desktop.
Specifying frame to allow render
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 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