ltq918
ltq918
You can currently use BackButtonListener() as a temporary alternative, like this ```dart BackButtonListener( onBackButtonPressed: () { var routePath = Get.currentRoute; if (routePath == '/') { if (_lastPressedAt == null ||...
I've also had this problem after popScope, but I'm currently not using two BackButtonListeners. This is indeed a problem.
GetX 4.6.6 does not seem to have this problem and ```PopScope``` can be used correctly
I also encountered this problem, I changed ```dart await Get.putAsync(() => AuthService().init()); ``` to ```dart Get.put(AuthService()); await Get.find().init(); ``` If I don't do this, my authentication status will be returned...
I also encountered the same problem, some pages will have this problem, some pages will not, some devices will happen, some devices will not; when the loading process occurs, the...
https://developers.weixin.qq.com/community/develop/doc/000e8e063583d060b6525a89d61008?source=indexnew 更新 2.0.4 可以了
@tolink-mengtianfu 我在之前的版本 ```wechat_kit 6.0.1``` 中,手动下载```https://developers.weixin.qq.com/doc/oplatform/Downloads/iOS_Resource.html```并覆盖,解决了此问题。 但是由于我目前尚未更新到 ```wechat_kit 6.0.2``` ,可能暂时无法帮助到你
@tolink-Mengtianfu ```wechat_kit 6.0.2``` 目前似乎尚未包含此更新
在使用 pull-down-refresh 组件的页面,开启 disableScroll: true ` { "usingComponents": {}, "disableScroll": true }`,即可解决
那这样试试呢 ```xml