美文网首页
Flutter 创建底部Tabbar与子控制器,去除底部点击动画

Flutter 创建底部Tabbar与子控制器,去除底部点击动画

作者: YYFast | 来源:发表于2020-01-19 21:49 被阅读0次

Flutter 创建底部Tabbar与子控制器,去除底部点击动画效果

1. 底部Tabbar的创建

底部tabbar的创建和实现使用的是BottomNavigationBar()函数来创建的,传入一个Items数组,里面存放的是BottomNavigationBarItem元素,类似于iOS,

  • BottomNavigationBar常见属性:
    • type:tabbar样式,默认为白色不显示;
    • fixedColor:tabbar选中颜色;
    • currentIndex:当前选中的Item的index
    • selectedFontSize:选中的title的size (默认14.0)
    • unselectedFontSize:未选中的title的size (默认12.0)
    • backgroundColor:背景色
    • iconSize:icon图片的size (默认是24.0)

type: BottomNavigationBarType.fixed,
fixedColor: Colors.greenAccent,
currentIndex: _cuttentIndex,

  • BottomNavigationBarItem常见的属性:
    • icon: 底部TabbarItem图片
    • title:底部TabbarItem标题
    • backgroundColor:背景色
      代码实现:

2 子控制器的创建

子控制器的实现原理是在Scaffold的body中,传入对应_currenIndex的控制器实例就;
rootpage中的代码如下:

class _RootPageState extends State<RootPage> {
  int _cuttentIndex = 0;
  List pages = [WeChatPage(),FriendsPage(),FindPage(),MinePage()];
  @override
  Widget build(BuildContext context) {
    return Container(
      child: Scaffold(
        bottomNavigationBar: BottomNavigationBar(
          type: BottomNavigationBarType.fixed,
          fixedColor: Colors.greenAccent,
          currentIndex: _cuttentIndex,
          selectedFontSize: 12.0,
          items: <BottomNavigationBarItem>[
            BottomNavigationBarItem(icon: Icon(Icons.chat), title: Text('微信')),
            BottomNavigationBarItem(
                icon: Icon(Icons.bookmark), title: Text('通讯录')),
            BottomNavigationBarItem(
                icon: Icon(Icons.history), title: Text('发现')),
            BottomNavigationBarItem(
                icon: Icon(Icons.person_outline), title: Text('我的')),
          ],
          onTap: (int index) {
            _cuttentIndex = index;
            print('index = $index');
            setState(() {}); //刷新状态
          },
        ),
        body: pages[_cuttentIndex],//传入数据源数组中对应index的控制器即可
      ),
    );
  }
}

子控制器需要返回一个有状态的Scaffold,创建不同的Appbar即可,代码如下:

import 'package:flutter/material.dart';

class WeChatPage extends StatefulWidget {
  @override
  _WeChatPageState createState() => _WeChatPageState();
}

class _WeChatPageState extends State<WeChatPage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: Text('微信'),
        ),
        body: Center(
          child: Text('Wechat'),
        ));
  }
}
运行效果

3 去除底部Item点击默认的波纹效果

在点击底部的Item时,会出现一个选中的波纹动画效果,这实际上是MaterialApp的一个属性设置,我们可以将这个属性的色值改成透明色即可,代码如下:

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'WeChat',
      theme: ThemeData(
          primaryColor: Colors.greenAccent,
          highlightColor: Color.fromRGBO(0, 0, 0, 0),
          splashColor: Color.fromRGBO(0, 0, 0, 0)),
      home: RootPage(),
    );
  }
}

相关文章

  • Flutter 创建底部Tabbar与子控制器,去除底部点击动画

    Flutter 创建底部Tabbar与子控制器,去除底部点击动画效果 1. 底部Tabbar的创建 底部tabba...

  • ios小知识总结

    1.设置隐藏push的子控制器的底部tabBar 2.发布时去除NSLog 在pch文件中写入以下函数 3.UIT...

  • 2-配置tabbar

    先搭建骨架,底部tabbar,切换控制器 先创建TabBarController 但是,有没有觉得有大量重复代码,...

  • flutter 底部tabbar

    效果图 代码

  • Flutter:底部Tabbar

    这篇文章介绍Flutter的底部Tabbar的实现,将从三种实现方式介绍 效果图 第一种:bottomNaviga...

  • UITabBarViewController和导航控制器

    UITabBarViewController是当今最主流的主界面控制器,它由底部TabBar(高49)和内部存放子...

  • 六、Flutter自定义Tabbar

    目录一、效果展示二、底部Tabbar三、顶部Tabbar 一、效果展示 底部Tabbar切换和顶部Tabbar切换...

  • Flutter底部tabbar实现

    Flutter 底部导航栏的多种实现

  • block使用

    在监听右侧设置按钮创建设置界面的控制器隐藏底部的tabBar跳转到设置界面 新建分组Setting(设置)按照MV...

  • 普遍性框架

    1.搭建基本结构:自定义tabBar控制器,自定义导航控制器,自定义子控制器 2.设置底部条:在tabBar控制器...

网友评论

      本文标题:Flutter 创建底部Tabbar与子控制器,去除底部点击动画

      本文链接:https://www.haomeiwen.com/subject/nfjdzctx.html