当前位置:   article > 正文

Flutter-保持页面状态 AutomaticKeepAliveClientMixin_flutter automatickeepaliveclientmixin

flutter automatickeepaliveclientmixin

Flutter项目中,如果切换tabar,initState方法会被反复重调,无法保持页面的状态。若想保持原有状态,切换页面时不再调用initState方法,只需要通过 with 给页面的状态管理类实现一个特征-------使用AutomaticKeepAliveClientMixin。同Vue中的使用原理一样

第一步:在State类中混入 AutomaticKeepAliveClientMixin这个类

class _MovieListState extends State<MovieList> with AutomaticKeepAliveClientMixin{....
  • 1

第二步:在这个类里面定义一个wantKeepAlive 函数 值为true

 @override
  // TODO: implement wantKeepAlive
  bool get wantKeepAlive => true;
  • 1
  • 2
  • 3

完整代码

//有状态控件,必须结合一个状态管理类,来进行实现
class _MovieListState extends State<MovieList> with AutomaticKeepAliveClientMixin {

  @override
  // TODO: implement wantKeepAlive
  bool get wantKeepAlive => true;

  @override
  void initState() {
    // TODO: implement initState
    super.initState();
    getMovieList();
  }

//渲染当前这个movielist 控件的UI结构
  Widget build(BuildContext context) {
    return ListView.builder()
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/307788?site
推荐阅读
相关标签
  

闽ICP备14008679号