flutter_router 1.2.0 flutter_router: ^1.2.0 copied to clipboard
Flutter routing library that adds flexible routing options like parameters and clear route definitions
Flutter Router #
Flutter routing library that adds flexible routing options like parameters and clear route definitions.
Usage #
To use this plugin, add flutter_router
as a dependency in your pubspec.yaml file.
Usage #
// Import package
import 'package:flutter_router/flutter_router.dart';
runApp(MaterialApp(
onGenerateRoute: Router({
'/accounts/{id}': (context, match) => Account(id: match.parameters['id'),
'/': (context, match) => Index(),
}).get,
));