Files
honeyDueKMP/iosApp/iosApp/Subviews/Residence/PropertyDetailItem.swift
Trey T af73f8861b iOS VoiceOver accessibility overhaul — 67 files
New framework:
- AccessibilityLabels.swift: centralized A11y struct with VoiceOver strings
- AccessibilityModifiers.swift: reusable .a11yHeader, .a11yDecorative,
  .a11yButton, .a11yCard, .a11yStatValue View extensions

Shared components: decorative elements hidden, stat views combined,
status/priority badges labeled, error views announced, empty states grouped

Cards: ResidenceCard, TaskCard, DynamicTaskCard, ContractorCard,
DocumentCard, WarrantyCard — all grouped with combined labels,
chevrons hidden, action buttons labeled

Main screens: Login, Register, Residences, Tasks, Contractors, Documents —
toolbar buttons labeled, section headers marked, form field hints added

Onboarding: all 10 views — header traits, button hints, task selection
state, progress indicator, decorative backgrounds hidden

Profile/Subscription: toggle hints, theme selection state, feature
comparison table accessibility, subscription button labels

iOS build verified: BUILD SUCCEEDED
2026-03-26 14:51:29 -05:00

36 lines
999 B
Swift

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(Color.appPrimary)
Text(value)
.font(.subheadline)
.fontWeight(.semibold)
.foregroundColor(Color.appTextPrimary)
Text(label)
.font(.caption2)
.foregroundColor(Color.appTextSecondary)
}
.accessibilityElement(children: .combine)
.accessibilityLabel(A11y.Common.stat(value: value, label: label))
}
}
#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()
}