为了账号安全,请及时绑定邮箱和手机立即绑定

【Flutter 3-1】Flutter手把手教程UI布局和Widget——底部导航栏BottomNavigationBar使用

作者 | 弗拉德

来源 | 弗拉德

BottomNavigationBar

BottomNavigationBarBottomNavigationBarItem 配合来共同展示Flutter里面的底部状态栏,底部状态栏是在移动端很重要的控件。

先看一下 BottomNavigationBar构造方法


  

BottomNavigationBar({

// key

Key key,

/// BottomNavigationBarItem 数组

  this.items,

/// 点击事件方法

this.onTap,

/// 当前选中的 元素下标

this.currentIndex = 0,

/// 底部导航栏的Z坐标

this.elevation,

/// 默认是 BottomNavigationBarType.shifting 一般我们使用 BottomNavigationBarType.fixed

this.type,

/// 选中项目颜色的值

Color fixedColor,

/// 背景颜色

this.backgroundColor,

/// BottomNavigationBarItem图标的大小

this.iconSize = 24.0,

/// 选中时图标和文字的颜色

Color selectedItemColor,

/// 未选中时图标和文字的颜色

this.unselectedItemColor,

// 选中时的子Item的样式

this.selectedIconTheme,

/// 未选中时的子Item的样式

this.unselectedIconTheme,

// 选中时字体大小

this.selectedFontSize = 14.0,

/// 未选中时的字体大小

this.unselectedFontSize = 12.0,

/// 选中的时候的字体样式

this.selectedLabelStyle,

/// 未选中时的字体样式

this.unselectedLabelStyle,

/// 是否为未选择的BottomNavigationBarItem显示标签

this.showSelectedLabels = true,

//// 是否为选定的BottomNavigationBarItem显示标签

this.showUnselectedLabels,

/// pc端或web端使用

this.mouseCursor,

})

我们来做一个点击底部状态栏按钮切换颜色的Demo


class  _BottomNavigationBarDemoPageState

extends  State<BottomNavigationBarDemoPage> {

int selectedIndex = 0;

List<Container> containerList = [

Container(

color: Colors.red,

),

Container(

color: Colors.blue,

),

Container(

color: Colors.yellow,

),

Container(

color: Colors.green,

)

];



Widget  build(BuildContext context) {

return  Scaffold(

appBar: AppBar(

centerTitle: true,

title: Text("BottomNavigationBarDemo"),

backgroundColor: Colors.blue,

),

body: containerList[selectedIndex],

bottomNavigationBar: BottomNavigationBar(

/// 这个很重要

type: BottomNavigationBarType.fixed,

currentIndex: selectedIndex,

onTap: (index) {

setState(() {

selectedIndex = index;

});

},

items: <BottomNavigationBarItem>[

BottomNavigationBarItem(

title: Text('F1'),

icon: Icon(Icons.home),

),

BottomNavigationBarItem(

title: Text('F2'),

icon: Icon(Icons.book),

),

BottomNavigationBarItem(

title: Text('F3'),

icon: Icon(Icons.school),

),

BottomNavigationBarItem(

title: Text('F4'),

icon: Icon(Icons.perm_identity),

),

],

),

);

}

}

  • Scaffold接收一个BottomNavigationBar作为bottomNavigationBar的参数,然后BottomNavigationBar接收一个items的数组,这个数组里面传入了4个BottomNavigationBarItem对象分别命名为F1F2F3F4

  • type参数传入的是BottomNavigationBarType.fixed,默认是BottomNavigationBarType.shifting,默认的效果是 只有在选中BottomNavigationBarItem时才会显示文字。设置成BottomNavigationBarType.fixed非选中状态下也会显示文字和图标

  • onTap实现的是一个方法,参数是被点击的当前BottomNavigationBarItem的下标,在这里被点击后调用setState来刷新页面的颜色

效果如下:

2020_01_29_bottom_navigation_bar

日常开发中以上效果基本能满足大多数需求

如果想要自定义下面Icon的样式,可以使用 [BottomAppBar] material.io/components/app-bars-bottom/android#anatomy-and-key-properties

这里也介绍两个不错的库

  • tab_bar_animation

链接: github.com/tunitowen/tab_bar_animation

效果如下:

2020_01_29_bottom_th2

  • simpleanimations

链接:github.com/TechieBlossom/simpleanimations

效果如下:

2020_01_29_bottom_th1

想体验以上的示例的运行效果,可以到[我的Github仓库] github.com/Johnson8888/learn_flutter 项目flutter_app->lib->routes->bottom_navigation_page.dart查看,并且可以下载下来运行并体验。


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消