We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 788dea5 commit 5272805Copy full SHA for 5272805
shell/platform/darwin/ios/framework/Source/FlutterEngine.mm
@@ -280,10 +280,10 @@ - (BOOL)createShell:(NSString*)entrypoint libraryURI:(NSString*)libraryURI {
280
settings.advisory_script_uri = libraryURI.UTF8String;
281
} else if (entrypoint) {
282
settings.advisory_script_entrypoint = entrypoint.UTF8String;
283
- settings.advisory_script_entrypoint = std::string("main.dart");
+ settings.advisory_script_uri = std::string("main.dart");
284
} else {
285
settings.advisory_script_entrypoint = std::string("main");
286
287
}
288
289
const auto threadLabel = [NSString stringWithFormat:@"%@.%zu", _labelPrefix, shellCount++];
0 commit comments