Skip to content

Instantly share code, notes, and snippets.

@tyirvine
Created October 25, 2020 23:25
Show Gist options
  • Save tyirvine/7ae7aa05ce1422ff9011447f27ff9bb2 to your computer and use it in GitHub Desktop.
Save tyirvine/7ae7aa05ce1422ff9011447f27ff9bb2 to your computer and use it in GitHub Desktop.
For Each loops for SwiftUI!
import SwiftUI
// Main View
struct ContentView: View {
var body: some View {
VStack(alignment: /*@START_MENU_TOKEN@*/ .center/*@END_MENU_TOKEN@*/, spacing: /*@START_MENU_TOKEN@*/nil/*@END_MENU_TOKEN@*/, content: {
ForEach(1 ..< 10) { _ in
Text("I love Turtles")
}
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment