get 1.0.2 copy "get: ^1.0.2" to clipboard
get: ^1.0.2 copied to clipboard

outdated

A consistent Flutter route navigation library that does not rebuild materialApp with each navigation..

Get #

A consistent Flutter route navigation library that does not rebuild materialApp with each navigation.

Getting Started #

Flutter's conventional navigation method has a route reconstruction bug that makes it inconsistent for large applications with undefined routes. Get came to solve this problem.

Plus, get makes navigation much clearer and more concise for beginners. The nomenclatures u sed by Flutter routes often confuse those who start with the framework. Get is friendly to those who came from Web programming, and those who never programmed, with a clearer navigation system.

How to use? #

To navigate to a new screen:

Get.to(context, NextScreen());

To return to previous screen

Get.back(context);

To go to the next screen and no option to go back to the previous screen (for use in SplashScreens, login screens and etc.)

Get.off(context, NextScreen());

To go to the next screen and cancel all previous routes (useful in shopping carts, polls, and tests)

Get.offAll(context, NextScreen());
13873
likes
0
pub points
100%
popularity

Publisher

verified publishergetx.site

A consistent Flutter route navigation library that does not rebuild materialApp with each navigation..

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on get