RIP-Comm / sossoldi

"Sossoldi" is a wealth management / personal finance / Net Worth tracking app, made with Flutter.
MIT License
276 stars 75 forks source link

Routing management #54

Closed lucaantonelli closed 1 year ago

lucaantonelli commented 1 year ago

Implemented a routing management system and added named routes.

Example for using it: You want to navigate to '/settings' > Navigator.of(context).pushNamed('/settings');

Adding a new route inside routes.dart:

 case '/example':
      return _materialPageRoute(settings.name, ExamplePage());

There is 3 different types of page route animation:

FedericoBruzzone commented 1 year ago

LGTM! :D

Can I merge this stuff?