From de29fc152a2b8e5faefc55e760b0b05c17d0c3dc Mon Sep 17 00:00:00 2001 From: Dan Field Date: Wed, 21 Nov 2018 15:06:08 -0800 Subject: [PATCH] load default splash screen when not init with engine (flutter/engine#6925) --- .../darwin/ios/framework/Source/FlutterViewController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm b/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm index 3fb58d709f..544bad0365 100644 --- a/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm +++ b/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm @@ -71,7 +71,7 @@ _flutterView.reset([[FlutterView alloc] initWithDelegate:_engine opaque:self.isViewOpaque]); [_engine.get() createShell:nil libraryURI:nil]; _engineNeedsLaunch = YES; - + [self loadDefaultSplashScreenView]; [self performCommonViewControllerInitialization]; }