Fetch arguments in Flutter module
问题 I have a native Android app. I imported a Flutter module. Now, I can successfully navigate to the selected route from my Android app. I know passing data between native and flutter side is by method channels. But I did not understand how to implement it when starting the Activity. Here is my GitHub repo. startActivity( new FlutterActivity.NewEngineIntentBuilder(MyFlutterActivity.class) .initialRoute("/secondScreen") .build(getApplicationContext()) .putExtra("title", "Hello")); // Here, title