Answers for "for loop in swift ui"

5

swift for loop

for i in 0...10 {
	print(i)
}

let array = Array(0...10) //same as [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

for value in array {
	print(value)
}
Posted by: Guest on June-30-2020
1

for in swiftui

struct ContentView: View {
    let colors: [Color] = [.red, .green, .blue]

    var body: some View {
        VStack {
            ForEach(colors, id: \.self) { color in
                Text(color.description.capitalized)
                    .padding()
                    .background(color)
            }
        }
    }
}
Posted by: Guest on January-07-2020

Code answers related to "Swift"

Browse Popular Code Answers by Language