flouter

Last updated:

0 purchases

flouter Image
flouter Images
Add to Cart

Description:

flouter

A Navigator 2.0 router for Flutter
Easy to use router library that do all the work for you !
Easy #
First create a MaterialApp.router :
return MaterialApp.router(
title: 'Uri navigator App',
routerDelegate: _routerDelegate,
routeInformationParser: UriRouteInformationParser(),
);
copied to clipboard
Second initialize your _routerDelegate like this :
final _routerDelegate = UriRouterDelegate(
pageNotFound: (routeInformation) => MaterialPage(
key: ValueKey('not-found-page'),
child: Scaffold(
body: Center(
child: Text('Page ${routeInformation.uri.path} not found'),
),
),
),
initialUris: [
Uri.parse('/'),
Uri.parse('/test/titi/'),
],
pages: {
RegExp(r'^/$'): (_) => HomePage(),
RegExp(r'^/test/([a-z]+)/$'): (routeInformation) => TestPage(routeInformation),
},
);
copied to clipboard
That's all you have to do ;)

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.