-[Video explanation of Other GetX Features](#video-explanation-of-other-getx-features)
-[Rompiendo cambios desde 2.0](#rompiendo-cambios-desde-20)
-[¿Por qué Getx?](#por-qué-getx)
...
...
@@ -187,6 +189,13 @@ Obx(() => Text (controller.name));
**Vea una explicación más detallada de la administración del estado [aquí](./docs/es_ES/state_management.md). Allí verá más ejemplos y también la diferencia entre el Gestión del Estado simple y el Gestión del Estado reactivo**
### Video explanation about state management
Amateur Coder did an awesome video about state management! Link: [Complete GetX State Management](https://www.youtube.com/watch?v=CNpXbeI_slw)
You will get a good idea of GetX power.
## Gestión de Rutas
Para navegar a una nueva pantalla:
...
...
@@ -446,6 +455,11 @@ Get.config(
)
```
## Video explanation of Other GetX Features
Amateur Coder did an awesome video about utils, storage, bindings and other features! Link: [GetX Other Features](https://youtu.be/ttQtlX_Q0eU)
-[**Communication and support channels:**](#communication-and-support-channels-)
-[**About Get**](#about-get)
-[**Installing**](#installing)
-[**Counter App in Get**](#counter-app-in-get)
-[**The Three pillars**](#the-three-pillars)
*[State management](#state-management)
+[Reactive State Manager](#reactive-state-manager)
+[More details about state management](#more-details-about-state-management)
*[Route management](#route-management)
+[More details about route management](#more-details-about-route-management)
+[Video Explanation](#video-explanation)
*[Dependency management](#dependency-management)
+[More details about dependency management](#more-details-about-dependency-management)
-[**How to contribute**](#how-to-contribute)
-[**Utils**](#utils)
*[Change Theme](#change-theme)
*[Other Advanced APIs](#other-advanced-apis)
+[Optional Global Settings and Manual configurations](#optional-global-settings-and-manual-configurations)
-[**Breaking changes from 2.0**](#breaking-changes-from-20)
-[**Why Getx?**](#why-getx-)
-[Communication and support channels:](#communication-and-support-channels)
-[About Get](#about-get)
-[Installing](#installing)
-[Counter App with GetX](#counter-app-with-getx)
-[The Three pillars](#the-three-pillars)
-[State management](#state-management)
-[Reactive State Manager](#reactive-state-manager)
-[More details about state management](#more-details-about-state-management)
-[Video explanation about state management](#video-explanation-about-state-management)
-[Route management](#route-management)
-[More details about route management](#more-details-about-route-management)
-[Video Explanation](#video-explanation)
-[Dependency management](#dependency-management)
-[More details about dependency management](#more-details-about-dependency-management)
-[How to contribute](#how-to-contribute)
-[Utils](#utils)
-[Change Theme](#change-theme)
-[Other Advanced APIs](#other-advanced-apis)
-[Optional Global Settings and Manual configurations](#optional-global-settings-and-manual-configurations)
-[Video explanation of Other GetX Features](#video-explanation-of-other-getx-features)
-[Breaking changes from 2.0](#breaking-changes-from-20)
-[Why Getx?](#why-getx)
# Communication and support channels:
...
...
@@ -187,7 +189,7 @@ That's all. It's *that* simple.
### Video explanation about state management
Amateur coder did an awesome video about state management! Link: [Complete GetX State Management](https://www.youtube.com/watch?v=CNpXbeI_slw)
Amateur Coder did an awesome video about state management! Link: [Complete GetX State Management](https://www.youtube.com/watch?v=CNpXbeI_slw)
You will get a good idea of GetX power.
...
...
@@ -465,18 +467,24 @@ Get.config(
)
```
## Video explanation of Other GetX Features
Amateur Coder did an awesome video about utils, storage, bindings and other features! Link: [GetX Other Features](https://youtu.be/ttQtlX_Q0eU)
# Breaking changes from 2.0
1- Rx types:
| Before | After |
| -------- | ---------- |
| StringX | `RxString` |
| IntX | `RxInt` |
| MapX | `RxMax` |
| ListX | `RxList` |
| NumX | `RxNum` |
| DoubleX | `RxDouble` |
| Before | After |
| ------- | ---------- |
| StringX | `RxString` |
| IntX | `RxInt` |
| MapX | `RxMax` |
| ListX | `RxList` |
| NumX | `RxNum` |
| DoubleX | `RxDouble` |
RxController and GetBuilder now have merged, you no longer need to memorize which controller you want to use, just use GetxController, it will work for simple state management and for reactive as well.