1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-10 14:58:34 +00:00

Add the ScopedModel Counter sample (#41)

Adds sample app that mimics the beloved starter app, but with ScopedModel for state management.

Contains a smoke test and is set up to run it in travis_script.sh.
This commit is contained in:
Filip Hracek
2019-01-02 11:25:52 -08:00
committed by GitHub
parent e67cbb03ea
commit 2128608386
56 changed files with 1376 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import UIKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}