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.
7 lines
88 B
Objective-C
7 lines
88 B
Objective-C
#import <Flutter/Flutter.h>
|
|
#include "AppDelegate.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
@end
|