2023-07-10 17:50:31 +08:00
|
|
|
#import "AppDelegate.h"
|
|
|
|
|
#import "GeneratedPluginRegistrant.h"
|
2023-10-16 17:18:10 +08:00
|
|
|
#import "XSFlutterManager.h"
|
2023-10-14 17:08:25 +08:00
|
|
|
#import "CommonDefine.h"
|
2023-07-10 17:50:31 +08:00
|
|
|
|
|
|
|
|
@implementation AppDelegate
|
|
|
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application
|
|
|
|
|
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
2023-10-16 17:18:10 +08:00
|
|
|
XSFlutterManager * VC = [[XSFlutterManager alloc]init];
|
|
|
|
|
self.window.rootViewController = VC;
|
|
|
|
|
[self.window makeKeyAndVisible];
|
|
|
|
|
return YES;
|
2023-07-10 17:50:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|