Implement bank transfer app flows

This commit is contained in:
2026-06-08 00:03:57 +05:00
parent ef877217ad
commit 9b281d48a7
127 changed files with 8008 additions and 90 deletions
+4 -22
View File
@@ -1,32 +1,14 @@
//
// Thijooree_iOSApp.swift
// Thijooree iOS
//
// Created by Mohamed Azim on 6/6/26.
//
import SwiftUI
import SwiftData
@main
struct Thijooree_iOSApp: App {
var sharedModelContainer: ModelContainer = {
let schema = Schema([
Item.self,
])
let modelConfiguration = ModelConfiguration(schema: schema, isStoredInMemoryOnly: false)
do {
return try ModelContainer(for: schema, configurations: [modelConfiguration])
} catch {
fatalError("Could not create ModelContainer: \(error)")
}
}()
@State private var appViewModel = AppViewModel()
var body: some Scene {
WindowGroup {
ContentView()
AppRouter()
.environment(appViewModel)
.tint(Color(red: 0.247, green: 0.396, blue: 0.678)) // #3F65AD MIB brand blue
}
.modelContainer(sharedModelContainer)
}
}