From db2f160bfead692256164222cf9a3f8c60aa3d5f Mon Sep 17 00:00:00 2001 From: Dan Field Date: Wed, 21 Nov 2018 14:39:16 -0800 Subject: [PATCH] load default splash screen when not init with engine --- .../darwin/ios/framework/Source/FlutterViewController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm b/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm index 3fb58d709f270..544bad0365d96 100644 --- a/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm +++ b/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm @@ -71,7 +71,7 @@ - (instancetype)initWithProject:(FlutterDartProject*)projectOrNil _flutterView.reset([[FlutterView alloc] initWithDelegate:_engine opaque:self.isViewOpaque]); [_engine.get() createShell:nil libraryURI:nil]; _engineNeedsLaunch = YES; - + [self loadDefaultSplashScreenView]; [self performCommonViewControllerInitialization]; }