mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Almost all real-world apps will want a custom app delegate, and 'flutter create' code-gens one by default. This brings the samples in line with our templates and the most common use case.
8 lines
141 B
Objective-C
8 lines
141 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
@end
|