deep_route 0.0.5 copy "deep_route: ^0.0.5" to clipboard
deep_route: ^0.0.5 copied to clipboard

A new Flutter package for navigation and routing with minimal amount of code to navigate even from the business logic, even without a context

What is DeepRoute?

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.

Installing #

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';

Usage #

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());

Additional information #

This package is in its early development stage.

5
likes
150
pub points
56%
popularity

Publisher

unverified uploader

A new Flutter package for navigation and routing with minimal amount of code to navigate even from the business logic, even without a context

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on deep_route