1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 20:50:04 +00:00
Files
flutter-examples/save_data_locally_with_sqlite/ios/Runner/AppDelegate.swift
Mukund Tandon 52a150d66b New Example - App to store data locally using SQlite (#102)
* Added files of save data locally using sqlite example App

* Update README.md
2022-10-22 20:18:58 +02:00

14 lines
404 B
Swift

import UIKit
import Flutter
@UIApplicationMain
@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)
}
}