使用 IndexdStack 包一层
body: IndexedStack(
index: _curtentIndex,
children: pages,
),
然后添加
- AutomaticKeepAliveClientMixin
- bool get wantKeepAlive => true;
class HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin {
@override
// TODO: implement wantKeepAlive
bool get wantKeepAlive => true;
好了 大概酱紫
网友评论