Schulung_iOS/BikeView.swift
2025-10-21 09:39:09 +02:00

20 lines
333 B
Swift

import SwiftUI
struct BikeView: View {
var bike = Bike(name: "Fahrrad", color: "lila")
var body: some View {
Text(bike.description)
Text(bike.name)
ForEach(1...5, id: \.self) { number in
Text(bike.color + " " + String(number))
}
}
}
#Preview {
BikeView()
}