You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+60-11Lines changed: 60 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -976,7 +976,7 @@ The 9000% figures are real, however, they refer to the gross performance between
976
976
- Update PT-br Readme (@eduardoflorence)
977
977
- Fix analyzer crash (@eduardoflorence)
978
978
- 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)
980
980
- Improve readme example (@dafinoer)
981
981
982
982
## [3.10.2]
@@ -1027,7 +1027,7 @@ Getx 3.10 released with CLI and Get Server.
1027
1027
1028
1028
## [3.7.0]
1029
1029
1030
-
- Added RxSet. Sets can now also be reactive.
1030
+
- Added: RxSet. Sets can now also be reactive.
1031
1031
- Added isDesktop/isMobile (@roipeker)
1032
1032
- Improve GetPlatform: It is now possible to know which device the user is using if GetPlatform.isWeb is true.
1033
1033
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.
1317
1317
1318
1318
## [2.6.3]
1319
1319
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
1322
1324
1323
1325
## [2.6.2]
1324
1326
1325
-
-Fix ListX
1327
+
-Refactor Bindings API
1326
1328
1327
1329
## [2.6.1]
1328
1330
1329
-
-Fix ListX
1331
+
-Expose Bindings API
1330
1332
1331
1333
## [2.6.0]
1332
1334
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.
1335
1384
1336
1385
## [2.5.0]
1337
1386
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
1340
1389
1341
1390
## [2.4.0]
1342
1391
@@ -1709,4 +1758,4 @@ Added fenix mode to Get.lazyPut.
0 commit comments