mirror of
https://github.com/deandreamatias/tv-randshow.git
synced 2025-08-06 15:09:34 +08:00
16 lines
520 B
Objective-C
16 lines
520 B
Objective-C
#include "AppDelegate.h"
|
|
#include "GeneratedPluginRegistrant.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application
|
|
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
int flutter_native_splash = 1;
|
|
UIApplication.sharedApplication.statusBarHidden = false;
|
|
|
|
[GeneratedPluginRegistrant registerWithRegistry:self];
|
|
// Override point for customization after application launch.
|
|
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
}
|
|
|
|
@end |