mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
* add form_app * revert unrelated changes * use links in README * remove unnecessary type annotation * Remove GlobalKey for sign_in_http sample * reword comment * run package:copywriter * use relative import * fix quotes * Add punctuation * make sure setState() is used in form_widgets sample * avoid first person pronoun * store date state in parent widget in form_widgets.dart
14 lines
404 B
Swift
14 lines
404 B
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)
|
|
}
|
|
}
|