Skip to content

Instantly share code, notes, and snippets.

@SergeShkurko
Created October 14, 2019 13:22
Show Gist options
  • Save SergeShkurko/f24490e2f2e20ccc97baa65af17f262b to your computer and use it in GitHub Desktop.
Save SergeShkurko/f24490e2f2e20ccc97baa65af17f262b to your computer and use it in GitHub Desktop.
Flutter migrate from Objective C to 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)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment