mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
21 lines
670 B
Swift
21 lines
670 B
Swift
|
import UIKit
|
||
|
import Flutter
|
||
|
|
||
|
@UIApplicationMain
|
||
|
@objc class AppDelegate: FlutterAppDelegate {
|
||
|
override func application(
|
||
|
_ application: UIApplication,
|
||
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
||
|
) -> Bool {
|
||
|
let dummy = get_mnemonic()
|
||
|
print(dummy)
|
||
|
var flutter_native_splash = 1
|
||
|
UIApplication.shared.isStatusBarHidden = false
|
||
|
|
||
|
GeneratedPluginRegistrant.register(with: self)
|
||
|
if #available(iOS 10.0, *) {
|
||
|
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
|
||
|
}
|
||
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
||
|
}
|
||
|
}
|