Commit c14208dc authored by Collin Jackson's avatar Collin Jackson Committed by GitHub

Merge pull request #4908 from collinjackson/simplify_ios_template

Simplify iOS template project
parents aff8e302 f82b6209
......@@ -5,16 +5,6 @@
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
FlutterDartProject* project = [[FlutterDartProject alloc] initFromDefaultSourceForConfiguration];
CGRect frame = [UIScreen mainScreen].bounds;
UIWindow* window = [[UIWindow alloc] initWithFrame:frame];
FlutterViewController* viewController = [[FlutterViewController alloc] initWithProject:project
nibName:nil
bundle:nil];
window.rootViewController = viewController;
self.window = window;
[self.window makeKeyAndVisible];
return YES;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment