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>
29 lines
746 B
Swift
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()
|
|
}
|