kamazoun

#4 in README-fr.md

@@ -18,7 +18,7 @@ @@ -18,7 +18,7 @@
18 18
19 - [A Propos de Get](#a-propos-de-get) 19 - [A Propos de Get](#a-propos-de-get)
20 - [Installation](#installation) 20 - [Installation](#installation)
21 -- [Counter App with GetX](#counter-app-with-getx) 21 +- [L'application 'Counter' avec GetX](#application-counter-avec-getx)
22 - [The Three pillars](#the-three-pillars) 22 - [The Three pillars](#the-three-pillars)
23 - [State management](#state-management) 23 - [State management](#state-management)
24 - [Reactive State Manager](#reactive-state-manager) 24 - [Reactive State Manager](#reactive-state-manager)
@@ -100,16 +100,15 @@ dependencies: @@ -100,16 +100,15 @@ dependencies:
100 get: 100 get:
101 ``` 101 ```
102 102
103 -Importez get dans les fichiers dans lesquels il doit être utilisé: 103 +Importez Get dans les fichiers dans lesquels il doit être utilisé:
104 104
105 ```dart 105 ```dart
106 import 'package:get/get.dart'; 106 import 'package:get/get.dart';
107 ``` 107 ```
108 108
109 -# Counter App with GetX  
110 -  
111 -The "counter" project created by default on new project on Flutter has over 100 lines (with comments). To show the power of Get, I will demonstrate how to make a "counter" changing the state with each click, switching between pages and sharing the state between screens, all in an organized way, separating the business logic from the view, in ONLY 26 LINES CODE INCLUDING COMMENTS. 109 +# Application Counter avec Getx
112 110
  111 +Le projet "compteur" créé par défaut sur un nouveau projet sur Flutter comporte plus de 100 lignes (avec commentaires). Pour montrer la puissance de Get, je vais vous montrer comment faire un "compteur" changeant d'état à chaque clic, basculant entre les pages et partageant l'état entre les écrans, le tout de manière organisée, en séparant la logique métier de la vue, en UNIQUEMENT 26 LIGNES CODE INCLUANT LES COMMENTAIRES.
113 - Step 1: 112 - Step 1:
114 Add "Get" before your MaterialApp, turning it into GetMaterialApp 113 Add "Get" before your MaterialApp, turning it into GetMaterialApp
115 114