• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#import "AppDelegate.h"
6
7@interface AppDelegate ()
8
9@end
10
11@implementation AppDelegate
12
13- (BOOL)application:(UIApplication*)application
14    didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
15  return YES;
16}
17
18- (void)applicationWillResignActive:(UIApplication*)application {
19}
20
21- (void)applicationDidEnterBackground:(UIApplication*)application {
22}
23
24- (void)applicationWillEnterForeground:(UIApplication*)application {
25}
26
27- (void)applicationDidBecomeActive:(UIApplication*)application {
28}
29
30- (void)applicationWillTerminate:(UIApplication*)application {
31}
32
33@end
34