我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Flutter组件--TabBar使用详情(分段控制器)

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Flutter组件--TabBar使用详情(分段控制器)

TabBar介绍

 

一个显示水平行选项卡的Widget。 通常创建为 AppBar 的 AppBar.bottom 部分并与 TabBarView 结合使用

在什么情况下使用TabBar

当你的app内容类别比较多的时候,我们常常会用到TabBar,例如网易新闻、京东、B站等,所以TabBar是一个使用非常频繁的组件。

如何创建

步骤一:创建TabController

为了使所选的 tab 与它所对应的内容能够同步变化,需要用 TabController 进行控制。我们既可以手动创建一个 TabController ,也能够直接使用 DefaultTabController widget。最简单的选择是使用 DefaultTabController widget,因为它能够创建出一个可供所有子 widgets 使用的 TabController

DefaultTabController(  // 选项卡的数量  length: 3,  child: // 在下一步完成此代码);

步骤二:创建tabs

当我们创建DefaultTabController, 接下来就可以用 TabBar widget 来创建 tabs。下面这个创建了包含三组 Tab widget 的 TabBar(一个),并把它放置于 AppBar widget 中。

DefaultTabController(  length: 3,  child: Scaffold(    appBar: AppBar(      title: Text("TabBar"),      bottom: TabBar(        tabs: [          Tab(icon: Icon(Icons.directions_bike),),          Tab(icon: Icon(Icons.directions_boat),),          Tab(icon: Icon(Icons.directions_car),),        ],      ),    ),  ),);

步骤三:为每个Tab创建内容

现在我们已经成功创建了一些 tabs,接下来要实现的是 tab 被选中时显示其对应的内容。为了实现这个效果,我们将使用 TabBarView widget。

import 'package:flutter/material.dart';class TabBarExample extends StatefulWidget {  @override  _TabBarExampleState createState() => _TabBarExampleState();}class _TabBarExampleState extends State {  @override  Widget build(BuildContext context) {    return DefaultTabController(      length: 3,      child: Scaffold(        appBar: AppBar(          title: Text("TabBar"),          bottom: TabBar(            tabs: [              Tab(icon: Icon(Icons.directions_bike),),              Tab(icon: Icon(Icons.directions_boat),),              Tab(icon: Icon(Icons.directions_car),),            ],          ),        ),        body: TabBarView(          children: [            Icon(Icons.directions_bike),            Icon(Icons.directions_boat),            Icon(Icons.directions_car),          ],        ),      ),    );  }}

TabBar效果图


​​​​​​​

注意事项:

           如果TabBar是需要在首页进行展示,而此时首页又有BottomNavigationBarItem的时候,因为TabBar和BottomNavigationBarItem都需要使用到​​​​​​​Scaffold.所以两者会产生冲突异常.这个时候直接在需要使用TabBar的页面重新创建Scaffold即可(只需要将Scaffold下面的appbar中的title直接更换成Tab组件即可).

步骤四:自定义缓存组件(如果用户在第一个栏位下滑到底部,然后向右滑动到其他栏位,这个时候重新回到第一个栏位的时候,第一个栏位就会重新加载,而不会停留在上次底部位置,为此自定义了缓存功能)

import 'package:flutter/material.dart';class KeepAliveWrapper extends StatefulWidget {  final Widget? child;  final bool keepAlive;  const KeepAliveWrapper({Key? key,@required this.child,this.keepAlive=true}) : super(key: key);  @override  State createState() => _KeepAliveWrapperState();}class _KeepAliveWrapperState extends State with AutomaticKeepAliveClientMixin{  @override  Widget build(BuildContext context) {    return widget.child!;  }  @override  bool get wantKeepAlive => widget.keepAlive;  @override  void didUpdateWidget(covariant KeepAliveWrapper oldWidget) {    // TODO: implement didUpdateWidget    if(oldWidget.keepAlive !=widget.keepAlive)      {// keepAlive 状态需要更新,实现在 AutomaticKeepAliveClientMixin 中 updateKeepAlive();        updateKeepAlive();      }    super.didUpdateWidget(oldWidget);  }}

调用

TabBar属性和说明

序列号字段属性描述
1tabsList两个多个的Tab列表
2controllerTabController控制tab的控制器
3isScrollablebool标签栏是否可以水平滚动
4indicatorColorColor设置选中Tab指示器的颜色
5automaticIndicatorColorAdjustmentbool是否自动调整indicatorColor
6indicatorWeightdouble设置选中Tab指示器线条的粗细
7indicatorPaddingEdgeInsetsGeometry设置选中Tab指示器间距,默认值为 EdgeInsets.zero
8indicatorDecoration设置选中Tab指示器的外观
9indicatorSizeTabBarIndicatorSize设置选中Tab指示器的大小
10labelColorColor设置选中Tab文字的颜色
11labelStyleTextStyle设置选中Tab文字的样式
12labelPaddingEdgeInsetsGeometry设置选中Tab文字的间距
13unselectedLabelColorColor设置未选中Tab文字的颜色
14unselectedLabelStyleTextStyle设置未选中Tab文字的样式
15dragStartBehaviorDragStartBehavior处理拖动开始行为的方式
16overlayColorMaterialStateProperty定义响应焦点、悬停和飞溅颜色
17mouseCursorMouseCursor鼠标指针进入或悬停在鼠标指针上时的光标
18enableFeedbackbool检测到的手势是否应提供声音和/或触觉反馈
19onTapValueChanged单击Tab时的回调
20physicsScrollPhysicsTabBar的滚动视图如何响应用户输入

TabBar属性详细使用

1.tabs

由两个多个组成的Tab列表

TabBar(  tabs: [    Tab(icon: Icon(Icons.directions_bike),),    Tab(icon: Icon(Icons.directions_boat),),    Tab(icon: Icon(Icons.directions_car),),  ],)

2.controller

可以控制tab的控制器

TabController _tabController;@overridevoid initState() {  // TODO: implement initState  super.initState();  _tabController = TabController(length: 3, vsync: this);_tabController.addListener(() { //如果不做下面判断的话,单击页面的时候此处监听会执行2次if (_tabController.animation!.value == _tabController.index) { print(_tabController.index); //获取点击或滑动页面的索引值   } });}TabBar(  controller: _tabController,  tabs: [    Tab(icon: Icon(Icons.directions_bike),),    Tab(icon: Icon(Icons.directions_boat),),    Tab(icon: Icon(Icons.directions_car),),  ],)

3.isScrollable

标签栏是否可以水平滚动

TabBar(  isScrollable: false,  tabs: [    Tab(icon: Icon(Icons.directions_bike),),    Tab(icon: Icon(Icons.directions_boat),),    Tab(icon: Icon(Icons.directions_car),),  ],)

4.indicatorColor

设置选中Tab指示器的颜色

TabBar(  indicatorColor: Colors.red,  tabs: [    Tab(icon: Icon(Icons.directions_bike),),    Tab(icon: Icon(Icons.directions_boat),),    Tab(icon: Icon(Icons.directions_car),),  ],)

5.automaticIndicatorColorAdjustment

是否自动调整 indicatorColor,如果 automaticIndicatorColorAdjustment 为 true 时,那么indicatorColor 会自动调整成 Colors.white

TabBar(  automaticIndicatorColorAdjustment: false,  tabs: [    Tab(icon: Icon(Icons.directions_bike),),    Tab(icon: Icon(Icons.directions_boat),),    Tab(icon: Icon(Icons.directions_car),),  ],)

6.indicatorWeight

设置选中Tab指示器线条的粗细

TabBar(  indicatorColor: Colors.red,  indicatorWeight: 5,  tabs: [    Tab(icon: Icon(Icons.directions_bike),),    Tab(icon: Icon(Icons.directions_boat),),    Tab(icon: Icon(Icons.directions_car),),  ],)

7.indicatorPadding

设置选中Tab指示器间距,默认值为 EdgeInsets.zero

TabBar(  indicatorColor: Colors.red,  indicatorWeight: 5,  indicatorPadding: EdgeInsets.only(bottom: 2),  tabs: [    Tab(icon: Icon(Icons.directions_bike),),    Tab(icon: Icon(Icons.directions_boat),),    Tab(icon: Icon(Icons.directions_car),),  ],)

8.indicator

设置选中Tab指示器的外观

TabBar(  indicatorColor: Colors.red,  indicatorWeight: 5,  indicatorPadding: EdgeInsets.only(bottom: 2),  indicator: BoxDecoration(    gradient: LinearGradient(colors: [      Colors.orange,      Colors.green    ]),  ),  tabs: [    Tab(icon: Icon(Icons.directions_bike),),    Tab(icon: Icon(Icons.directions_boat),),    Tab(icon: Icon(Icons.directions_car),),  ],)

9.indicatorSize

设置选中Tab指示器的大小,该值是一个枚举类型,TabBarIndicatorSize.tab 跟随 Tab 的宽度,TabBarIndicatorSize.label 跟随 Tab 内容文字的宽度。

TabBar(  indicatorColor: Colors.red,  indicatorSize: TabBarIndicatorSize.tab,  tabs: [    Tab(icon: Icon(Icons.directions_bike),),    Tab(icon: Icon(Icons.directions_boat),),    Tab(icon: Icon(Icons.directions_car),),  ],)

10.labelColor

设置选中Tab文字的颜色

TabBar(  indicatorColor: Colors.red,  labelColor: Colors.pink,  tabs: [    Tab(icon: Icon(Icons.directions_bike),),    Tab(icon: Icon(Icons.directions_boat),),    Tab(icon: Icon(Icons.directions_car),),  ],)

11.labelStyle

设置选中Tab文字的样式

TabBar(  labelStyle: TextStyle(    backgroundColor: Colors.green,    fontSize: 20  ),  tabs: [    Tab(icon: Icon(Icons.directions_bike), text: "单车",),    Tab(icon: Icon(Icons.directions_boat), text: "轮船",),    Tab(icon: Icon(Icons.directions_car), text: "汽车",),  ],)

12.labelPadding

设置选中Tab内容的间距

TabBar(  labelStyle: TextStyle(    backgroundColor: Colors.green,    fontSize: 20  ),  labelPadding: EdgeInsets.all(0),  tabs: [    Tab(icon: Icon(Icons.directions_bike), text: "单车",),    Tab(icon: Icon(Icons.directions_boat), text: "轮船",),    Tab(icon: Icon(Icons.directions_car), text: "汽车",),  ],)

13.unselectedLabelColor

设置未选中Tab文字的颜色

TabBar(unselectedLabelColor: Colors.orange,  tabs: [    Tab(icon: Icon(Icons.directions_bike), text: "单车",),    Tab(icon: Icon(Icons.directions_boat), text: "轮船",),    Tab(icon: Icon(Icons.directions_car), text: "汽车",),  ],)

14.unselectedLabelStyle

设置未选中Tab文字的样式

TabBar(unselectedLabelColor: Colors.orange,  unselectedLabelStyle: TextStyle(    backgroundColor: Colors.pink  ),  tabs: [    Tab(icon: Icon(Icons.directions_bike), text: "单车",),    Tab(icon: Icon(Icons.directions_boat), text: "轮船",),    Tab(icon: Icon(Icons.directions_car), text: "汽车",),  ],)

15.dragStartBehavior

处理拖动开始行为的方式

TabBar(unselectedLabelColor: Colors.orange,  unselectedLabelStyle: TextStyle(    backgroundColor: Colors.pink  ),  dragStartBehavior: DragStartBehavior.start,  tabs: [    Tab(icon: Icon(Icons.directions_bike), text: "单车",),    Tab(icon: Icon(Icons.directions_boat), text: "轮船",),    Tab(icon: Icon(Icons.directions_car), text: "汽车",),  ],)

16.overlayColor

定义响应焦点、悬停和飞溅颜色。

17.mouseCursor

鼠标指针进入或悬停在鼠标指针上时的光标,针对 Flutter web 应用

TabBar(unselectedLabelColor: Colors.orange,  unselectedLabelStyle: TextStyle(    backgroundColor: Colors.pink  ),  mouseCursor: SystemMouseCursors.allScroll,  tabs: [    Tab(icon: Icon(Icons.directions_bike), text: "单车",),    Tab(icon: Icon(Icons.directions_boat), text: "轮船",),    Tab(icon: Icon(Icons.directions_car), text: "汽车",),  ],)

18.enableFeedback

检测到的手势是否应提供声音和/或触觉反馈,默认为 true

TabBar(  enableFeedback: true,  tabs: [    Tab(icon: Icon(Icons.directions_bike), text: "单车",),    Tab(icon: Icon(Icons.directions_boat), text: "轮船",),    Tab(icon: Icon(Icons.directions_car), text: "汽车",),  ],)

19.onTap

单击Tab时的回调

TabBar(  enableFeedback: true,  onTap: (index) {   //只能监听到单击事件,无法监听到滑动事件    print(index);  },  tabs: [    Tab(icon: Icon(Icons.directions_bike), text: "单车",),    Tab(icon: Icon(Icons.directions_boat), text: "轮船",),    Tab(icon: Icon(Icons.directions_car), text: "汽车",),  ],)

20.physics

TabBar的滚动视图如何响应用户输入,

例如,确定在用户停止拖动滚动视图后滚动视图如何继续动画

TabBar(  physics: NeverScrollableScrollPhysics(),  tabs: [    Tab(icon: Icon(Icons.directions_bike), text: "单车",),    Tab(icon: Icon(Icons.directions_boat), text: "轮船",),    Tab(icon: Icon(Icons.directions_car), text: "汽车",),  ],)

来源地址:https://blog.csdn.net/eastWind1101/article/details/127961345

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Flutter组件--TabBar使用详情(分段控制器)

下载Word文档到电脑,方便收藏和打印~

下载Word文档

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录