mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
17 lines
309 B
Objective-C
17 lines
309 B
Objective-C
// ViewController.h
|
|
#import <UIKit/UIKit.h>
|
|
#import <Flutter/Flutter.h>
|
|
#import "NativeViewController.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DynamicResizingViewController : UIViewController
|
|
|
|
@property (readonly, strong, nonatomic) FlutterViewController* flutterViewController;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|