GH.REN
Results
1
comments of
GH.REN
升级到PopScope遇到了相同的问题,放弃了。 楼主的问题“用回WillPopScope,居然无论onWillPop设置true还是false,ios都不能侧滑返回”,换成null即可。 ```dart return WillPopScope( onWillPop: canGoBack ? () async { CoreKit.log('onWillPop() call controller function "goBack()"...'); await goBack(); return false; } : null, child: child, ); ```