Schulung_iOS/BikeView.swift
2025-10-22 08:19:25 +02:00

26 lines
466 B
Swift

import SwiftUI
struct BikeView: TabContent {
static var title = "Bike"
static var image = "bicycle"
var bike = Bike(name: "Fahrrad", price: 11.31, color: Color.cyan)
var body: some View {
VStack{
Label(bike.name, systemImage: "bicycle")
.foregroundStyle(.white)
.padding(5)
.background(bike.color)
}
}
}
#Preview {
BikeView()
}