Allow passing different entrypoints other than 'main' #15089
Labels
c: new feature
Nothing broken; request for a new capability
engine
flutter/engine repository. See also e: labels.
waiting for customer response
The Flutter team cannot make further progress on this issue until the original reporter responds
Steps to Reproduce
Create two entry points in a new flutter project:
main
andmain2
. Displayingmain2
is not possible, becauseFlutterViewController
always points to themain
entry point.Even though
FlutterDartProject
allows you to the pass other entry points using this function:FlutterViewController
calls this other method instead:which in turn calls the first one with a hardcoded
main
as the entryPoint.We need ability to pass in the entry point via
FlutterViewController
rather than it selecting one on its own in order to embed multiple flutter views in the app.The text was updated successfully, but these errors were encountered: