example for simple routing
Navigator.pushNamed(context, "/screen_a");
Navigator.pushNamed(context, "/screen_a/안녕하세요");
Navigator.pushNamed(context, "/screen_b");
Navigator.pushNamed(context, "/screen_b?param1=1¶m2=2");
Navigator.pushNamed(context, "/screen_b", arguments: {"param1": "hi", "param2": "hello"});
Navigator.pushNamed(context, "/screen_c/123");
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.