--
You received this message because you are subscribed to the Google Groups "Flutter Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You should relay the url path into the Flutter framework using FlutterView.setInitialRoute, not by using custom platform messages (the latter are communicated asynchronously, and you need the initial route at hand to your Dart code before it renders its first frame).On the Dart side, the String you give to setInitialRoute is made available as Window.defaultRouteName, which most apps shouldn't need to access directly, as it is already being used by MaterialApp and Navigator.There is an older Android example here.
It most likely doesn't work anymore. The Navigation API changed quite a lot with #10894.I believe Michael is looking at updating the example, and turning it into a real doc asset.