Skip to content

Commit 9a2620a

Browse files
committed
updated status with sealed classes and pattern matching
1 parent f61daae commit 9a2620a

File tree

1 file changed

+60
-11
lines changed

1 file changed

+60
-11
lines changed

CHANGELOG.md

Lines changed: 60 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ The 9000% figures are real, however, they refer to the gross performance between
976976
- Update PT-br Readme (@eduardoflorence)
977977
- Fix analyzer crash (@eduardoflorence)
978978
- Fix for switch types usages in GetUtils (@grohden)
979-
- Improvement: RxList, RxMap and RxSet null check in the constructor (@Hitsu91)
979+
- Improvement: RxList, RxSet and RxMap null check in the constructor (@Hitsu91)
980980
- Improve readme example (@dafinoer)
981981

982982
## [3.10.2]
@@ -1027,7 +1027,7 @@ Getx 3.10 released with CLI and Get Server.
10271027

10281028
## [3.7.0]
10291029

1030-
- Added RxSet. Sets can now also be reactive.
1030+
- Added: RxSet. Sets can now also be reactive.
10311031
- Added isDesktop/isMobile (@roipeker)
10321032
- Improve GetPlatform: It is now possible to know which device the user is using if GetPlatform.isWeb is true.
10331033
context.responsiveValue used device orientation based on web and non-web applications. Now it checks if it is a desktop application (web or desktop application) to do the responsiveness calculation. (@roipeker)
@@ -1317,26 +1317,75 @@ Added fenix mode to Get.lazyPut.
13171317

13181318
## [2.6.3]
13191319

1320-
- Improve extensions tests (@Nipodemos)
1321-
- Improve performance
1320+
- Flutter currently has a problem on some devices where using showModalBottomSheet() can cause TextFields to be hidden behind the keyboard (https://github.com/flutter/flutter/issues/18564) this issue is closed, even users reporting that the problem still occurs.
1321+
The problem happens casually, as well as the problem of the snackbar on the iPhone SE 2, and checking the code, I realized that a padding with MediaQuery.of(context).viewInsets.bottom is missing inside the bottomSheet to make it work correctly, since it does not have any constraint with the keyboard.
1322+
For stability, I decided not to use the standard Flutter bottomSheet, which contains many bugs, mainly related to keyboard padding, and the lack of respect for topBar's safeArea, and to use a proprietary bottomSheet implementation that is more stable. The Flutter dialog has no problem, so it will be used as the basis for Get.dialog. The bottomSheet will be based on the Flutter bottomSheet Raw API (\_ModalBottomSheetRoute), applying bug fixes.
1323+
- Added Get.isSnackbarOpen tests
13221324

13231325
## [2.6.2]
13241326

1325-
- Fix ListX
1327+
- Refactor Bindings API
13261328

13271329
## [2.6.1]
13281330

1329-
- Fix ListX
1331+
- Expose Bindings API
13301332

13311333
## [2.6.0]
13321334

1333-
- Added List.obs
1334-
- Now you can transform any class on obs
1335+
- Added bindings.
1336+
You can now add bindings from your controllers to your routes, to prepare GetBuilder or GetX to create a dependency already declared in a Binding class. This feature is in an experimental phase, and will not be documented until the end of the tests.
1337+
1338+
## [2.5.10]
1339+
1340+
- Removed remnants of previousArgs on routeObserver.
1341+
This feature had been deprecated in previous updates, and was removed in version 2.5.8. Some remaining references on the routeObserver were causing exceptions in version 2.5.9, and were removed completely in version 2.5.10.
1342+
1343+
## [2.5.9]
1344+
1345+
- Fix Get.find with named instance
1346+
1347+
## [2.5.8]
1348+
1349+
- Added docs
1350+
- Added tests(@chimon2000)
1351+
1352+
## [2.5.7]
1353+
1354+
- Fix Get.generalDialog optionals
1355+
- Added GetX onInit support
1356+
1357+
## [2.5.6]
1358+
1359+
- GetBuilder refactor to work with lazyPut.
1360+
Now you can list your controllers in advance with Get.lazyPut, and only when it is called for the first time will it be relocated in memory.
1361+
- Fix english typos(@gumbarros)
1362+
1363+
## [2.5.5]
1364+
1365+
- Fix arguments broken by new methods
1366+
1367+
## [2.5.4]
1368+
1369+
- Refactor methods
1370+
1371+
## [2.5.3]
1372+
1373+
- Fix snackbar padding on iPhone SE 2.
1374+
- Added themes docs
1375+
- Added ThemeMode (@RodBr)
1376+
1377+
## [2.5.2]
1378+
1379+
- Fix: key not found when Get.key is used with no MaterialApp
1380+
1381+
## [2.5.1]
1382+
1383+
- Improve - GetBuilder uses 18% less ram on more of 20 controllers.
13351384

13361385
## [2.5.0]
13371386

1338-
- Added GetX, state manager rxDart based.
1339-
- Fix error on add for non global controllers
1387+
- Added List.obs
1388+
- Now you can transform any class on obs
13401389

13411390
## [2.4.0]
13421391

@@ -1709,4 +1758,4 @@ Added fenix mode to Get.lazyPut.
17091758

17101759
## [1.0.0]
17111760

1712-
- initial release
1761+
- initial release

0 commit comments

Comments
 (0)