美文网首页
flutter 解决tab 每次都刷新的问题

flutter 解决tab 每次都刷新的问题

作者: 微笑城ios | 来源:发表于2022-11-17 10:08 被阅读0次

使用 IndexdStack 包一层

body: IndexedStack(
        index: _curtentIndex,
        children: pages,
      ),

然后添加

  1. AutomaticKeepAliveClientMixin
  2. bool get wantKeepAlive => true;
class HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin {
  @override
  // TODO: implement wantKeepAlive
  bool get wantKeepAlive => true;

好了 大概酱紫

相关文章

网友评论

      本文标题:flutter 解决tab 每次都刷新的问题

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