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

使用 IndexdStack 包一层

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

然后添加

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

好了 大概酱紫

你可能感兴趣的:(flutter 解决tab 每次都刷新的问题)