Flutter学习日记

flutter 之 TabBar、TabBarView的使用

2019-12-02  本文已影响0人  小伟_b79a

TabBar还有TabBarView都是谷歌flutter官方组件库——Material组件库提供的组件,其中TabBar用于导航切换,TabBarView则是配合其切换显示的对应的视图。我在使用它们的时候也是遇到了不少问题,所以想通过这篇文章总结一下它们的几种使用方式,以及如何实现TabBar每次切换页面不重载。

一、TabBar配合TabBarView

二、TabBar每次切换页面不重载

tab切换页面实现持久化状态:每次tab切换页面页面的状态都会还原,这里我们使用AutomaticKeepAliveClientMixin类,因为通过控制它可以根据你需要的页面进行配置要不要二次切换页面后就保持状态,如果需要就设置,如果不需要是要每次进入都重新刷新一遍就不要配置。

  1. tabBartabBarView配置:
import 'package:flutter/material.dart';
import 'package:flutter_jdshop/pages/tabs/CategoryPage.dart';
import 'package:flutter_jdshop/pages/tabs/HomePage.dart';
import 'package:flutter_jdshop/pages/tabs/ShoppingCartPage.dart';
import 'package:flutter_jdshop/pages/tabs/UserPage.dart';
 
class Tabs extends StatefulWidget {
  Tabs({Key key}) : super(key: key);
 
  _TabsState createState() => _TabsState();
}
 
class _TabsState extends State<Tabs> {
 
  int _currentIndex = 0;//记录当前选中哪个页面
  
  //第1步,声明PageController
  PageController _pageController;
 
  @override
  void initState() { 
    super.initState();
    //第2步,初始化`PageController`
    this._pageController = PageController(initialPage: this._currentIndex);
  }
 
  List<Widget> _pages = [
    HomePage(),
    CategoryPage(),
    ShoppingCartPage(),
    UserPage()
  ];
 
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text("JDShop")),
      //第3步,将body设置成PageView,并配置PageView的controller属性
      body: PageView(
        controller: this._pageController,
        children: this._pages,
      ),
      bottomNavigationBar: BottomNavigationBar(
        fixedColor: Colors.red,//底部导航栏按钮选中时的颜色
        type: BottomNavigationBarType.fixed,//底部导航栏的适配,当item多的时候都展示出来
        currentIndex: this._currentIndex,
        onTap: (index){
          setState(() {
            //第4步,设置点击底部Tab的时候的页面跳转
            this._currentIndex = index;
            this._pageController.jumpToPage(this._currentIndex);
          });
        },
        items: [
          BottomNavigationBarItem(icon: Icon(Icons.home), title: Text("首页")),
          BottomNavigationBarItem(icon: Icon(Icons.category), title: Text("分类")),
          BottomNavigationBarItem(icon: Icon(Icons.shopping_cart), title: Text("购物车")),
          BottomNavigationBarItem(icon: Icon(Icons.people), title: Text("我的"))
        ],
      ),
    );
  }
}
  1. 对应的tabBarview页面配置:

    需要保持页面状态的页面里面混入AutomaticKeepAliveClientMixin类,并将wantKeepAlive方法返回为true,如下所示:

    //首页页面
    class _HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin{
      
      @override
      bool get wantKeepAlive => true;
    
  2. 可以了,实现效果如下所示:


    image
上一篇下一篇

猜你喜欢

热点阅读