flutter 返回上一页刷新

 @override
  void deactivate() {
    super.deactivate();
    var bool = ModalRoute.of(context).isCurrent;
    if (bool) {
      _initState(); //需要调用的方法
    }
  }

你可能感兴趣的:(flutter 返回上一页刷新)