~cytrogen/fluent-reader-mobile

ref: 7629f7f3978360911c67b9e4364e38a815e00322 fluent-reader-mobile/ios/Runner/AppDelegate.swift -rw-r--r-- 404 bytes
7629f7f3 — Haoyuan Liu Merge pull request #77 from Alkarex/patch-1 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
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)
  }
}