Skip to content

flutter-painter/rc_router

 
 

Repository files navigation

codecov

rc_router

A simple but powerful router for Flutter

Usage

Create a custom RcRoute

The code below is based on what you have in the example app

class HomeRoute extends RcRoute {
  static String routePath = '/';

  HomeRoute() : super(path: HomeRoute.routePath);

  @override
  Widget build(BuildContext context) {
    final name = 'anonymous';
    return Provider<String>.value(
      value: name,
      child: WelcomePage(),
    );
  }
}

Create RcRoutes

...
  @override
  void initState() {
    super.initState();
    rcRoutes = RcRoutes(
      notFoundRoute: generateNotFound,
      routes: [
        HomeRoute(),
        GrettingsRoute(),
      ],
    );
  }
...

Use RcRoutes

@override
Widget build(BuildContext context) {
  return MaterialApp(
    title: 'Flutter Demo',
    theme: ThemeData(
      primarySwatch: Colors.blue,
    ),
    onGenerateRoute: rcRoutes.onGeneratedRoute,
  );
}

About

Simple but powerful Flutter router

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 88.6%
  • Objective-C 5.1%
  • Shell 3.7%
  • Java 2.6%