Files
honeyDueKMP/iosApp/iosApp/Subviews/Auth/RegisterHeader.swift
Trey t a2b81a244b Implement custom 5-color design system across entire iOS app
Apply consistent branding colors (BlueGreen, Cerulean, BrightAmber, PrimaryScarlet,
cream backgrounds) to all screens, components, buttons, icons, and text throughout
the app. Update all Form/List views with proper list row backgrounds to ensure
visual consistency with card-based layouts.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-21 07:58:01 -06:00

29 lines
746 B
Swift

import SwiftUI
struct RegisterHeader: View {
var body: some View {
VStack(spacing: 12) {
Image(systemName: "person.badge.plus")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 64, height: 64)
.foregroundColor(Color.appPrimary)
Text("Join MyCrib")
.font(.largeTitle)
.fontWeight(.bold)
.foregroundColor(Color.appTextPrimary)
Text("Start managing your properties today")
.font(.subheadline)
.foregroundColor(Color.appTextSecondary)
}
.padding(.top, 40)
.padding(.bottom, 20)
}
}
#Preview {
RegisterHeader()
}