flrouter 1.1.2 copy "flrouter: ^1.1.2" to clipboard
flrouter: ^1.1.2 copied to clipboard

Flrouter is a Flutter routing library that adds flexible routing options like parameters and clear route definitions.

Flrouter [Deprecated] #

pub package

Deprecated #

Use flutter_router instead. Flrouter is a Flutter routing library that adds flexible routing options like parameters and clear route definitions.

Usage #

To use this plugin, add flrouter as a dependency in your pubspec.yaml file.

Usage #

// Import package
import 'package:flrouter/flrouter.dart';
runApp(MaterialApp(
  onGenerateRoute: Flrouter({
    '/accounts/{id}': (context, match) => Accounts.View(id: match.parameters['id'),
    '/': (context, match) => Index(),
  }).get,
));
0
likes
25
pub points
0%
popularity

Publisher

unverified uploader

Flrouter is a Flutter routing library that adds flexible routing options like parameters and clear route definitions.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, uri

More

Packages that depend on flrouter