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
Get.back() does not change the data. It stores data while I write in GetStorage but only Get.to()/ Get.named() these changes the data of Get.Storage(). While try to Get.back() it is not changing the data. Is there any solution for this?
The text was updated successfully, but these errors were encountered:
use await keyword on your navigate code statement. and listen to get.back with payload. and decide to rebuild widget tree or not. bool? isNeedReBuild = await Get.to(()=>XScreen()); if(isNeedRebuild){ // fetch your data from storage and setstate the widget tree }
Get.back() does not change the data. It stores data while I write in GetStorage but only Get.to()/ Get.named() these changes the data of Get.Storage(). While try to Get.back() it is not changing the data. Is there any solution for this?
The text was updated successfully, but these errors were encountered: