Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Last active May 1, 2022 11:47
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 sturdysturge/8adad9788bae6d79c53038652f0fda7b to your computer and use it in GitHub Desktop.
Save sturdysturge/8adad9788bae6d79c53038652f0fda7b to your computer and use it in GitHub Desktop.
import SwiftUI
struct NumbersView: View {
var body: some View {
Text("One")
Text("Two")
Text("Three")
Text("Four")
Text("Five")
Text("Six")
Text("Seven")
Text("Eight")
Text("Nine")
Text("Ten")
Text("Eleven")
Text("Twelve")
Text("Thirteen")
Text("Fourteen")
Text("Fifteen")
}
}
struct ContentView: View {
var body: some View {
VStack {
NumbersView()
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment