Committed by
GitHub
Merge pull request #1020 from DominusKelvin/patch-1
fix: typo
Showing
1 changed file
with
4 additions
and
3 deletions
@@ -125,9 +125,10 @@ It was made simple, to have the least CPU impact, and just to fulfill a single p | @@ -125,9 +125,10 @@ It was made simple, to have the least CPU impact, and just to fulfill a single p | ||
125 | If you need a **powerful** State Manager, you can't go wrong with **GetX**. | 125 | If you need a **powerful** State Manager, you can't go wrong with **GetX**. |
126 | 126 | ||
127 | It doesn't work with variables, but __flows__, everything in it are `Streams` under the hood. | 127 | It doesn't work with variables, but __flows__, everything in it are `Streams` under the hood. |
128 | -You can use _rxDart_ in conjunction with it, because everything are `Streams` , | ||
129 | -you can listen the `event` of each "_Rx_ variable", | ||
130 | -because everything in it are `Streams` . | 128 | + |
129 | +You can use _rxDart_ in conjunction with it, because everything are `Streams`, | ||
130 | +you can listen to the `event` of each "_Rx_ variable", | ||
131 | +because everything in it are `Streams`. | ||
131 | 132 | ||
132 | It is literally a _BLoC_ approach, easier than _MobX_, and without code generators or decorations. | 133 | It is literally a _BLoC_ approach, easier than _MobX_, and without code generators or decorations. |
133 | You can turn **anything** into an _"Observable"_ with just a `.obs` . | 134 | You can turn **anything** into an _"Observable"_ with just a `.obs` . |
-
Please register or login to post a comment