Skip to content

Instantly share code, notes, and snippets.

@alectogeek
Created December 26, 2019 14:18
Show Gist options
  • Select an option

  • Save alectogeek/c0a31fe592719252392404b8c59d0882 to your computer and use it in GitHub Desktop.

Select an option

Save alectogeek/c0a31fe592719252392404b8c59d0882 to your computer and use it in GitHub Desktop.

Revisions

  1. alectogeek created this gist Dec 26, 2019.
    13 changes: 13 additions & 0 deletions AppDelegate.swift
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,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)
    }
    }