Initial commit: GBCM Flutter Mobile App - Base project with Freya Theme integration

This commit is contained in:
dahoud
2025-10-07 20:12:29 +00:00
commit c2bcae05cc
128 changed files with 5015 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import Flutter
import UIKit
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}