1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-09 21:19:55 +00:00

added: persist_key_value

This commit is contained in:
Nishant Srivastava
2018-08-06 23:29:03 +02:00
parent 75d833bec1
commit d49037f110
67 changed files with 2229 additions and 0 deletions

View File

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