-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Closed
Closed
Copy link
Labels
a: existing-appsIntegration with existing apps via the add-to-app flowIntegration with existing apps via the add-to-app flowcustomer: crowdAffects or could affect many people, though not necessarily a specific customer.Affects or could affect many people, though not necessarily a specific customer.e: embedderUsers of the Embedder APIUsers of the Embedder APIplatform-iosiOS applications specificallyiOS applications specifically
Milestone
Description
Even with flutter/engine#6834, the following code will result in a flash of the launch storyboard.
FlutterViewController* flutterViewController =
[[FullScreenViewController alloc] init];
flutterViewController.splashScreenView = nil;
[self.navigationController pushViewController:flutterViewController
animated:NO];Pre-warming the engine makes it marginally better but not much, e.g.:
// marginally better, but still flashes
FlutterViewController* flutterViewController =
[[FlutterViewController alloc] initWithEngine:[self engine]
nibName:nil
bundle:nil];
flutterViewController.splashScreenView = nil;
[self.navigationController pushViewController:flutterViewController
animated:YES];still flashes the launch screen.
/cc @jamesderlin
Metadata
Metadata
Assignees
Labels
a: existing-appsIntegration with existing apps via the add-to-app flowIntegration with existing apps via the add-to-app flowcustomer: crowdAffects or could affect many people, though not necessarily a specific customer.Affects or could affect many people, though not necessarily a specific customer.e: embedderUsers of the Embedder APIUsers of the Embedder APIplatform-iosiOS applications specificallyiOS applications specifically