jonataslaw

update readme

1 # Get 1 # Get
2 2
3 -Get is an extra-light and powerful microframework for Flutter that will give you superpowers and increase your productivity. Navigate without context, open dialogs, snackbars or bottomsheets from anywhere in your code in an easy and practical way.  
4 -Get is secure, stable, up-to-date, and offers a huge range of APIs that are not present in the standard framework. 3 +Get is an extra-light and powerful library for Flutter that will give you superpowers and increase your productivity.
  4 +Navigate without context, open dialogs, snackbars or bottomsheets from anywhere in your code in an easy and practical way!
  5 +Get is secure, stable, up-to-date, and offers a huge range of APIs that are not present on default framework.
5 6
6 ```dart 7 ```dart
7 // Default Flutter navigator 8 // Default Flutter navigator
@@ -18,22 +19,23 @@ Navigator.of(context).push( @@ -18,22 +19,23 @@ Navigator.of(context).push(
18 Get.to(Home()); 19 Get.to(Home());
19 ``` 20 ```
20 *Languages: [English](README.md), [Brazilian Portuguese](README.pt-br.md).* 21 *Languages: [English](README.md), [Brazilian Portuguese](README.pt-br.md).*
  22 +
21 ## Getting Started 23 ## Getting Started
22 24
23 Flutter's conventional navigation has a lot of unnecessary boilerplate, requires context to navigate between screens, open dialogs, and use snackbars on framework is really boring. 25 Flutter's conventional navigation has a lot of unnecessary boilerplate, requires context to navigate between screens, open dialogs, and use snackbars on framework is really boring.
24 In addition, when a route is pushed, the entire MaterialApp can be rebuilt causing freezes, this does not happen with Get. 26 In addition, when a route is pushed, the entire MaterialApp can be rebuilt causing freezes, this does not happen with Get.
25 -This library that will change the way you work with the Framework and save your life from cliche code, increasing your productivity, and eliminating the rebuild bugs of your application. 27 +This library that will change the way you work with the Framework and save your life from boilerplate, increasing your productivity, and eliminating the rebuild bugs of your application.
26 28
27 ## How to use? 29 ## How to use?
28 30
29 - Flutter Master/Dev/Beta: version 2.0.0-dev 31 - Flutter Master/Dev/Beta: version 2.0.0-dev
30 -- Flutter Stable branch: version 1.17.3 32 +- Flutter Stable branch: version 2.0.0
31 33
32 Add this to your package's pubspec.yaml file: 34 Add this to your package's pubspec.yaml file:
33 35
34 ``` 36 ```
35 dependencies: 37 dependencies:
36 - get: ^1.17.3 // ^2.0.0-dev on beta/dev/master 38 + get: ^2.0.0 // ^2.0.0-dev on beta/dev/master
37 ``` 39 ```
38 Exchange your MaterialApp for GetMaterialApp and enjoy! 40 Exchange your MaterialApp for GetMaterialApp and enjoy!
39 ```dart 41 ```dart