美文网首页
PageView/TabBarView 等控件保存状态的问题解决

PageView/TabBarView 等控件保存状态的问题解决

作者: xmb | 来源:发表于2019-06-11 18:34 被阅读0次

Flutter: PageView/TabBarView 等控件保存状态的问题解决方案
官方推荐方法:
AutomaticKeepAliveClientMixin,同时实现wantKeepAlive方法。

class _MsgLisViewState extends State<MsgListView> with AutomaticKeepAliveClientMixin {
...
  @override
  bool get wantKeepAlive => true; // 需要实现这个方法,返回true则会保持状态
...
}

相关文章

网友评论

      本文标题:PageView/TabBarView 等控件保存状态的问题解决

      本文链接:https://www.haomeiwen.com/subject/oalcfctx.html