0

我使用 TabBarView 作为 BottomNavigationBar 的页面持有者,而不是索引堆栈。但这确实会在每次更改选项卡时刷新页面。状态不被维护。该怎么办?

4

1 回答 1

0

使用AutomaticKeepAliveClientMixin flutter.dev

class _SampleScaffoldSate extends State<SampleScaffold> with AutomaticKeepAliveClientMixin {

  // ... other code

  @override
  bool get wantKeepAlive => true;

}
于 2020-01-15T13:55:38.227 回答