CpdnCristiano

Add example de trPlural

Showing 1 changed file with 30 additions and 19 deletions
@@ -52,11 +52,11 @@ @@ -52,11 +52,11 @@
52 - [ValueBuilder](#valuebuilder) 52 - [ValueBuilder](#valuebuilder)
53 - [ObxValue](#obxvalue) 53 - [ObxValue](#obxvalue)
54 - [Useful tips](#useful-tips) 54 - [Useful tips](#useful-tips)
55 - - [GetView](#getview)  
56 - - [GetResponsiveView](#getresponsiveview)  
57 - - [How to use it](#how-to-use-it)  
58 - - [GetWidget](#getwidget)  
59 - - [GetxService](#getxservice) 55 + - [GetView](#getview)
  56 + - [GetResponsiveView](#getresponsiveview)
  57 + - [How to use it](#how-to-use-it)
  58 + - [GetWidget](#getwidget)
  59 + - [GetxService](#getxservice)
60 - [Breaking changes from 2.0](#breaking-changes-from-20) 60 - [Breaking changes from 2.0](#breaking-changes-from-20)
61 - [Why Getx?](#why-getx) 61 - [Why Getx?](#why-getx)
62 - [Community](#community) 62 - [Community](#community)
@@ -71,19 +71,19 @@ @@ -71,19 +71,19 @@
71 - GetX has 3 basic principles, this means that this is the priority for all resources in the library: **PRODUCTIVITY, PERFORMANCE AND ORGANIZATION.** 71 - GetX has 3 basic principles, this means that this is the priority for all resources in the library: **PRODUCTIVITY, PERFORMANCE AND ORGANIZATION.**
72 72
73 - **PERFORMANCE:** GetX is focused on performance and minimum consumption of resources. GetX does not use Streams or ChangeNotifier. 73 - **PERFORMANCE:** GetX is focused on performance and minimum consumption of resources. GetX does not use Streams or ChangeNotifier.
74 -  
75 - - **PRODUCTIVITY:** GetX uses an easy and pleasant syntax. No matter what you want to do, there is always an easier way with Getx. It will save hours of development, and will extract the maximum performance that your application can deliver.  
76 - Generally, the developer should be concerned with removing controllers from memory. With GetX this is not necessary, because resources are removed from memory when they are not used by default. If you want to keep it in memory, you must explicitly declare "permanent: true" in your dependency. That way, in addition to saving time, you are less at risk of having unnecessary dependencies on memory. Dependency loading is also lazy by default. 74 +
  75 + - **PRODUCTIVITY:** GetX uses an easy and pleasant syntax. No matter what you want to do, there is always an easier way with Getx. It will save hours of development, and will extract the maximum performance that your application can deliver.
  76 + Generally, the developer should be concerned with removing controllers from memory. With GetX this is not necessary, because resources are removed from memory when they are not used by default. If you want to keep it in memory, you must explicitly declare "permanent: true" in your dependency. That way, in addition to saving time, you are less at risk of having unnecessary dependencies on memory. Dependency loading is also lazy by default.
77 77
78 - **ORGANIZATION:** GetX allows the total decoupling of the View, presentation logic, business logic, dependency injection, and navigation. You do not need context to navigate between routes, so you are not dependent on the widget tree (visualization) for this. You don't need context to access your controllers/blocs through an inheritedWidget, so you completely decouple your presentation logic and business logic from your visualization layer. You do not need to inject your Controllers/Models/Blocs classes into your widget tree through multiproviders, for this GetX uses its own dependency injection feature, decoupling the DI from its view completely. 78 - **ORGANIZATION:** GetX allows the total decoupling of the View, presentation logic, business logic, dependency injection, and navigation. You do not need context to navigate between routes, so you are not dependent on the widget tree (visualization) for this. You don't need context to access your controllers/blocs through an inheritedWidget, so you completely decouple your presentation logic and business logic from your visualization layer. You do not need to inject your Controllers/Models/Blocs classes into your widget tree through multiproviders, for this GetX uses its own dependency injection feature, decoupling the DI from its view completely.
79 - With GetX you know where to find each feature of your application, having clean code by default. This in addition to facilitating maintenance, makes the sharing of modules, something that until then in Flutter was unthinkable, something totally possible.  
80 - BLoC was a starting point for organizing code in Flutter, it separates business logic from visualization. Getx is a natural evolution of this, not only separating the business logic, but the presentation logic. Bonus injection of dependencies and routes are also decoupled, and the data layer is out of it all. You know where everything is, and all of this in an easier way than building a hello world.  
81 - GetX is the easiest, practical and scalable way to build high-performance applications with the Flutter SDK, with a large ecosystem around it that works perfectly together, being easy for beginners, and accurate for experts. It is secure, stable, up-to-date, and offers a huge range of APIs build-in that are not present on default Flutter SDK. 79 + With GetX you know where to find each feature of your application, having clean code by default. This in addition to facilitating maintenance, makes the sharing of modules, something that until then in Flutter was unthinkable, something totally possible.
  80 + BLoC was a starting point for organizing code in Flutter, it separates business logic from visualization. Getx is a natural evolution of this, not only separating the business logic, but the presentation logic. Bonus injection of dependencies and routes are also decoupled, and the data layer is out of it all. You know where everything is, and all of this in an easier way than building a hello world.
  81 + GetX is the easiest, practical and scalable way to build high-performance applications with the Flutter SDK, with a large ecosystem around it that works perfectly together, being easy for beginners, and accurate for experts. It is secure, stable, up-to-date, and offers a huge range of APIs build-in that are not present on default Flutter SDK.
82 82
83 - GetX is not a bloated. It has a multitude of features that allow you to start programming without worrying about anything, but each of these features are in separate containers, and are only started after use. If you only use State Management, only State Management will be compiled. If you only use routes, nothing from the state management will be compiled. 83 - GetX is not a bloated. It has a multitude of features that allow you to start programming without worrying about anything, but each of these features are in separate containers, and are only started after use. If you only use State Management, only State Management will be compiled. If you only use routes, nothing from the state management will be compiled.
84 84
85 - Getx has a huge ecosystem, a large community, a large number of collaborators, and will be maintained as long as the Flutter exists. Getx too is capable of running with the same code on Android, iOS, Web, Mac, Linux, Windows, and on your server. 85 - Getx has a huge ecosystem, a large community, a large number of collaborators, and will be maintained as long as the Flutter exists. Getx too is capable of running with the same code on Android, iOS, Web, Mac, Linux, Windows, and on your server.
86 -**It is possible to fully reuse your code made on the frontend on your backend with [Get Server](https://github.com/jonataslaw/get_server)**. 86 + **It is possible to fully reuse your code made on the frontend on your backend with [Get Server](https://github.com/jonataslaw/get_server)**.
87 87
88 **In addition, the entire development process can be completely automated, both on the server and on the front end with [Get CLI](https://github.com/jonataslaw/get_cli)**. 88 **In addition, the entire development process can be completely automated, both on the server and on the front end with [Get CLI](https://github.com/jonataslaw/get_cli)**.
89 89
@@ -138,7 +138,7 @@ class Home extends StatelessWidget { @@ -138,7 +138,7 @@ class Home extends StatelessWidget {
138 138
139 @override 139 @override
140 Widget build(context) { 140 Widget build(context) {
141 - 141 +
142 // Instantiate your class using Get.put() to make it available for all "child" routes there. 142 // Instantiate your class using Get.put() to make it available for all "child" routes there.
143 final Controller c = Get.put(Controller()); 143 final Controller c = Get.put(Controller());
144 144
@@ -341,6 +341,13 @@ Just append `.tr` to the specified key and it will be translated, using the curr @@ -341,6 +341,13 @@ Just append `.tr` to the specified key and it will be translated, using the curr
341 Text('title'.tr); 341 Text('title'.tr);
342 ``` 342 ```
343 343
  344 +#### Using translation with singular and plural
  345 +
  346 +```dart
  347 +var products = [];
  348 +Text('singularKey'.trPlural('pluralKey', products.length, Args));
  349 +```
  350 +
344 ### Locales 351 ### Locales
345 352
346 Pass parameters to `GetMaterialApp` to define the locale and translations. 353 Pass parameters to `GetMaterialApp` to define the locale and translations.
@@ -394,9 +401,11 @@ Get.changeTheme(Get.isDarkMode? ThemeData.light(): ThemeData.dark()); @@ -394,9 +401,11 @@ Get.changeTheme(Get.isDarkMode? ThemeData.light(): ThemeData.dark());
394 When `.darkmode` is activated, it will switch to the _light theme_, and when the _light theme_ becomes active, it will change to _dark theme_. 401 When `.darkmode` is activated, it will switch to the _light theme_, and when the _light theme_ becomes active, it will change to _dark theme_.
395 402
396 ## GetConnect 403 ## GetConnect
  404 +
397 GetConnect is an easy way to communicate from your back to your front with http or websockets 405 GetConnect is an easy way to communicate from your back to your front with http or websockets
398 406
399 ### Default configuration 407 ### Default configuration
  408 +
400 You can simply extend GetConnect and use the GET/POST/PUT/DELETE/SOCKET methods to communicate with your Rest API or websockets. 409 You can simply extend GetConnect and use the GET/POST/PUT/DELETE/SOCKET methods to communicate with your Rest API or websockets.
401 410
402 ```dart 411 ```dart
@@ -419,7 +428,9 @@ class UserProvider extends GetConnect { @@ -419,7 +428,9 @@ class UserProvider extends GetConnect {
419 } 428 }
420 } 429 }
421 ``` 430 ```
  431 +
422 ### Custom configuration 432 ### Custom configuration
  433 +
423 GetConnect is highly customizable You can define base Url, as answer modifiers, as Requests modifiers, define an authenticator, and even the number of attempts in which it will try to authenticate itself, in addition to giving the possibility to define a standard decoder that will transform all your requests into your Models without any additional configuration. 434 GetConnect is highly customizable You can define base Url, as answer modifiers, as Requests modifiers, define an authenticator, and even the number of attempts in which it will try to authenticate itself, in addition to giving the possibility to define a standard decoder that will transform all your requests into your Models without any additional configuration.
424 435
425 ```dart 436 ```dart
@@ -456,7 +467,7 @@ class HomeProvider extends GetConnect { @@ -456,7 +467,7 @@ class HomeProvider extends GetConnect {
456 return request; 467 return request;
457 }); 468 });
458 469
459 - //Autenticator will be called 3 times if HttpStatus is 470 + //Autenticator will be called 3 times if HttpStatus is
460 //HttpStatus.unauthorized 471 //HttpStatus.unauthorized
461 httpClient.maxAuthRetries = 3; 472 httpClient.maxAuthRetries = 3;
462 } 473 }
@@ -485,6 +496,7 @@ final middlewares = [ @@ -485,6 +496,7 @@ final middlewares = [
485 GetMiddleware(priority: -8), 496 GetMiddleware(priority: -8),
486 ]; 497 ];
487 ``` 498 ```
  499 +
488 those middlewares will be run in this order **-8 => 2 => 4 => 5** 500 those middlewares will be run in this order **-8 => 2 => 4 => 5**
489 501
490 ### Redirect 502 ### Redirect
@@ -917,10 +929,10 @@ You have two options to build it. @@ -917,10 +929,10 @@ You have two options to build it.
917 929
918 - with `builder` method you return the widget to build. 930 - with `builder` method you return the widget to build.
919 - with methods `desktop`, `tablet`,`phone`, `watch`. the specific 931 - with methods `desktop`, `tablet`,`phone`, `watch`. the specific
920 -method will be built when the screen type matches the method  
921 -when the screen is [ScreenType.Tablet] the `tablet` method  
922 -will be exuded and so on.  
923 -**Note:** If you use this method please set the property `alwaysUseBuilder` to `false` 932 + method will be built when the screen type matches the method
  933 + when the screen is [ScreenType.Tablet] the `tablet` method
  934 + will be exuded and so on.
  935 + **Note:** If you use this method please set the property `alwaysUseBuilder` to `false`
924 936
925 With `settings` property you can set the width limit for the screen types. 937 With `settings` property you can set the width limit for the screen types.
926 938
@@ -1098,4 +1110,3 @@ Any contribution is welcome! @@ -1098,4 +1110,3 @@ Any contribution is welcome!
1098 - [GetX Flutter Firebase Auth Example](https://medium.com/@jeffmcmorris/getx-flutter-firebase-auth-example-b383c1dd1de2) - Article by Jeff McMorris. 1110 - [GetX Flutter Firebase Auth Example](https://medium.com/@jeffmcmorris/getx-flutter-firebase-auth-example-b383c1dd1de2) - Article by Jeff McMorris.
1099 - [Flutter State Management with GetX – Complete App](https://www.appwithflutter.com/flutter-state-management-with-getx/) - by App With Flutter. 1111 - [Flutter State Management with GetX – Complete App](https://www.appwithflutter.com/flutter-state-management-with-getx/) - by App With Flutter.
1100 - [Flutter Routing with Animation using Get Package](https://www.appwithflutter.com/flutter-routing-using-get-package/) - by App With Flutter. 1112 - [Flutter Routing with Animation using Get Package](https://www.appwithflutter.com/flutter-routing-using-get-package/) - by App With Flutter.
1101 -