WillPopScope 在 Flutter 中已弃用

问题描述 投票:0回答:1

“WillPopScope”已弃用,不应使用。请改用 PopScope。此功能在 v3.12.0-1.0.pre 后已弃用

WillPopScope(
  onWillPop: () async {
    // your logic        
    return false;
  },
)
flutter dart mobile cross-platform deprecated
1个回答
0
投票

已解决

将旧小部件从

WillPopScope
替换为
PopScope
新小部件检查下面的代码

/// NEW CODE
PopScope(
  canPop: true,
  onPopInvoked : (didPop){
   // logic
  },
)
© www.soinside.com 2019 - 2024. All rights reserved.