Add Ladill Mini native Android and iOS apps.
Deploy Ladill Mini / deploy (push) Successful in 35s

Ship full-featured mobile clients with auth, payments, QRs, push notifications, and iOS polish including Figtree typography, app icons, and QR previews.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-11 22:30:35 +00:00
co-authored by Cursor
parent ec9f09f997
commit ea6afb80a4
172 changed files with 12114 additions and 0 deletions
@@ -0,0 +1,17 @@
import Foundation
/// Routes notification taps into the in-app notifications inbox (mirrors Android `open_notifications`).
@MainActor
final class PushNotificationRouter: ObservableObject {
static let shared = PushNotificationRouter()
@Published var shouldOpenInbox = false
func openInbox() {
shouldOpenInbox = true
}
func consumeOpenInboxRequest() {
shouldOpenInbox = false
}
}