payfrit-beacon-ios/PayfritBeacon/Views/DevBanner.swift
Schwifty 8ecd533429 fix: replace generic icon with beacon-specific icon and match Android color scheme
- App icon now uses white bg + PAYFRIT text + bluetooth beacon icon (matches Android)
- AccentColor set to Payfrit Green (#22B24B)
- Added BrandColors.swift with full Android color palette parity
- All views updated: payfritGreen replaces .blue, proper status colors throughout
- Signal strength, beacon type badges, QR scanner corners all use brand colors
- DevBanner uses warningOrange matching Android's #FF9800

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-22 19:29:35 +00:00

14 lines
386 B
Swift

import SwiftUI
/// Orange DEV banner overlay (matches Android's DevBanner)
struct DevBanner: View {
var body: some View {
Text("DEV")
.font(.caption2.bold())
.foregroundStyle(.white)
.padding(.horizontal, 12)
.padding(.vertical, 4)
.background(.warningOrange, in: Capsule())
.padding(.top, 4)
}
}