Flutter 学习: BottomNavigationBar

2020-04-20  本文已影响0人  __素颜__
一.复习上一节
class HomePage extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    // TODO: implement createState
    return MyButtonWidget();
  }
}

class MyButtonWidget extends State<HomePage> {

  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return RaisedButton(
            child: Text("点击增加条目"),
            onPressed: () {
              setState(() {
             
              });
            },
          );
  }
}

二. BottomNavigationBar底部导航条

-常见属性

  • items :底部导航条按钮集合 List<BottomNavigationBarItem>
  • iconSize:icon尺寸
  • currentIndex:默认选中第几个
  • onTap:选中变化的回调参数
  • fixedColor:选中颜色
  • type:配置底部tabs可以有多个 BottomNavigationBarType.fixed BottomNavigationBarType.shifting
import 'package:flutter/material.dart';

void main() {
  runApp(MyContent());
}

class MyContent extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    // TODO: implement createState
    return MyContentWidget();
  }
}

class MyContentWidget extends State<MyContent> {
  int currentIndex = 0;

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        home: Scaffold(
      appBar: AppBar(title: Text("标题${currentIndex}")),
      body: HomePage(),
      bottomNavigationBar: BottomNavigationBar(
        currentIndex: currentIndex,
        onTap: (int index) {
          setState(() {
            this.currentIndex = index;
          });
        },
        fixedColor: Colors.pink,
        type: BottomNavigationBarType.fixed,
        items: [
          BottomNavigationBarItem(
              title: Text("首页", style: TextStyle(color: Colors.grey)),
              icon: Icon(Icons.list, color: Colors.grey)),
          BottomNavigationBarItem(
              title: Text("守护", style: TextStyle(color: Colors.grey)),
              icon: Icon(Icons.satellite, color: Colors.grey)),
          BottomNavigationBarItem(
              title: Text("故事", style: TextStyle(color: Colors.grey)),
              icon: Icon(Icons.account_balance, color: Colors.grey)),
        ],
      ),
    ));
  }
}

items 数组中必须是指定类型 BottomNavigationBarItem

三.实现底部tab切换内容区域

1.在libs包下创建三个页面,在flutter中页面就是组件

import 'package:flutter/material.dart';

class MyPage1 extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    // TODO: implement createState
    return MyButtonWidget();
  }
}

class MyButtonWidget extends State<MyPage1> {
  int count = 0;
  List list = new List();

  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return Container(
      alignment: Alignment.center,
      child: Text("页面1")
    );
  }
}

import 'package:flutter/material.dart';

import 'main0.dart';
import 'main1.dart';
import 'main2.dart';

void main() {
  runApp(MyContent());
}

class MyContent extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    // TODO: implement createState
    return MyContentWidget();
  }
}

class MyContentWidget extends State<MyContent> {
  int currentIndex = 0;
  List _listPage = [MyPage0(), MyPage1(), Mypage2()];

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        home: Scaffold(
      appBar: AppBar(title: Text("标题${currentIndex}")),
      body: _listPage[currentIndex],
      bottomNavigationBar: BottomNavigationBar(
        currentIndex: currentIndex,
        onTap: (int index) {
          setState(() {
            this.currentIndex = index;
          });
        },
        fixedColor: Colors.pink,
        type: BottomNavigationBarType.fixed,
        items: [
          BottomNavigationBarItem(
              title: Text("首页", style: TextStyle(color: Colors.grey)),
              icon: Icon(Icons.list, color: Colors.grey)),
          BottomNavigationBarItem(
              title: Text("守护", style: TextStyle(color: Colors.grey)),
              icon: Icon(Icons.satellite, color: Colors.grey)),
          BottomNavigationBarItem(
              title: Text("故事", style: TextStyle(color: Colors.grey)),
              icon: Icon(Icons.account_balance, color: Colors.grey)),
        ],
      ),
    ));
  }
}

1.通过onTap回调 参数来获取 listPage 中的页面设置在body上
按钮比较多时设置type 属性
2.主页面引用MyPage0、MyPage1、MyPage2 组件需要导入包
3.当底部tab过多时可以设置type 属性BottomNavigationBarType.fixed
4.通过更新数据实现body内容切换,需要用到有状态组件

四.总结

BottomNavigationBar 写法

class MyContent extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    // TODO: implement createState
    return MyContentWidget();
  }
}

class MyContentWidget extends State<MyContent> {
  int currentIndex = 0;
  List _listPage = [];

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
      appBar: AppBar(title: ),
      body: _listPage[currentIndex],
      bottomNavigationBar: BottomNavigationBar(
        currentIndex: currentIndex,
        onTap: (int index) {
          setState(() {
            this.currentIndex = index;
          });
        },
        fixedColor: Colors.pink,
        type: BottomNavigationBarType.fixed,
        items: [BottomNavigationBarItem()],
      ),
    ));
  }
}

上一篇下一篇

猜你喜欢

热点阅读