feat: add iOS support and harden receipt scanning

This commit is contained in:
Timo
2026-08-20 23:48:26 +02:00
parent f5e06c32b0
commit cf1b799e1b
107 changed files with 11755 additions and 122 deletions

View File

@@ -0,0 +1,13 @@
import SwiftUI
/// A 1px rule in the system's one border color `DESIGN (1).md`
/// Components Lists: "Separated by 1px horizontal dividers in #E2E8F0."
/// Prefer this over the bare `Divider()`, whose color/weight follow the
/// system theme rather than this app's fixed palette.
struct ZenithDivider: View {
var body: some View {
Rectangle()
.fill(Color.zenithBorder)
.frame(height: 1)
}
}