ios ui refactor
This commit is contained in:
32
iosApp/iosApp/Subviews/Residence/PropertyDetailItem.swift
Normal file
32
iosApp/iosApp/Subviews/Residence/PropertyDetailItem.swift
Normal file
@@ -0,0 +1,32 @@
|
||||
import SwiftUI
|
||||
|
||||
struct PropertyDetailItem: View {
|
||||
let icon: String
|
||||
let value: String
|
||||
let label: String
|
||||
|
||||
var body: some View {
|
||||
VStack(spacing: 4) {
|
||||
Image(systemName: icon)
|
||||
.font(.caption)
|
||||
.foregroundColor(.blue)
|
||||
|
||||
Text(value)
|
||||
.font(.subheadline)
|
||||
.fontWeight(.semibold)
|
||||
|
||||
Text(label)
|
||||
.font(.caption2)
|
||||
.foregroundColor(.secondary)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#Preview {
|
||||
HStack(spacing: 24) {
|
||||
PropertyDetailItem(icon: "bed.double.fill", value: "3", label: "Beds")
|
||||
PropertyDetailItem(icon: "shower.fill", value: "2.5", label: "Baths")
|
||||
PropertyDetailItem(icon: "square.fill", value: "1800", label: "Sq Ft")
|
||||
}
|
||||
.padding()
|
||||
}
|
||||
Reference in New Issue
Block a user