It’s a Flutter navigation package, it requires a minimal amount of code to generate everything needed for navigation inside of your App. It has the advantage of not needing context, so you can navigate from your business logic also.
Add DeepRoute to your pubspec.yaml file:
dependencies:
deep_route:
Import DeepRoute in files that it will be used:
import 'package:deep_route/deep_route.dart';
For sample code look in /example
folder.
Step 1: Add "DeepMaterialApp" before your MaterialApp, use DeepMaterialApp instead of MaterialApp
void main() => runApp(DeepMaterialApp(home: Home()));
Step 2: Use DeepRoute for navigation like
DeepRoute.toNamed('/RouteName', arguments: 'sample');
DeepRoute.to(NextPage());
This package is in its early development stage.