flutter_simple_router

example for simple routing

스크린샷 2019-11-13 오후 2 42 26 스크린샷 2019-11-13 오후 2 42 30 스크린샷 2019-11-13 오후 2 42 32 스크린샷 2019-11-13 오후 2 42 35 스크린샷 2019-11-13 오후 2 44 54

Navigator.pushNamed(context, "/screen_a");
Navigator.pushNamed(context, "/screen_a/안녕하세요");
Navigator.pushNamed(context, "/screen_b");
Navigator.pushNamed(context, "/screen_b?param1=1&param2=2");
Navigator.pushNamed(context, "/screen_b", arguments: {"param1": "hi", "param2": "hello"});
Navigator.pushNamed(context, "/screen_c/123");

Getting Started

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.