AppDelegate.h 546 Bytes
Newer Older
1 2 3 4 5 6 7
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import <UIKit/UIKit.h>
#import <Flutter/Flutter.h>

8
#import <EarlGreyTest/GREYHostApplicationDistantObject.h>
9

10
NS_ASSUME_NONNULL_BEGIN
11

12 13
@interface GREYHostApplicationDistantObject (AppDelegate)
- (NSNotificationCenter *)notificationCenter;
14
@end
15 16 17 18 19 20

@interface AppDelegate : FlutterAppDelegate
@property(nonatomic, strong, readonly) FlutterEngine* engine;
@end

NS_ASSUME_NONNULL_END