当前位置:网站首页>Flutter tabbar set text background, do not delay
Flutter tabbar set text background, do not delay
2022-08-06 00:29:00 【smoky】
如果是监听indexto set the background color ,There will be a delay in switching colors,可以做以下操作
TabBar(
isScrollable: true,
indicator: BoxDecoration(color: Colors.red,borderRadius: BorderRadius.circular(50)),//This one can set the color and rounded corners(The meaning of the indicator used as a background)
labelColor: Colors.white,
labelStyle:
const TextStyle(fontSize: 18, fontWeight: FontWeight.w500),
labelPadding:
const EdgeInsets.only(left: 8, right: 8),
unselectedLabelColor: const Color(0xFF1A1A1A),
unselectedLabelStyle:
const TextStyle(fontSize: 18, fontWeight: FontWeight.w500),
controller: _tabController,
tabs: tabs.map((chose) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
padding: const EdgeInsets.only(
left: 15, right: 15, top: 9, bottom: 9),//This is to set the length, width and height of the text background
child: Text(chose.title),
)
],
);
}).toList())
边栏推荐
- 新型数据中心,如何推动以数据为关键要素的数字经济落地?
- leetcode 240. Search a 2D Matrix II 搜索二维矩阵 II(中等)
- How to fix wsa cannot be installed
- Day6: Multiple-choice questions required for the interview
- VR全景在教育领域发展潜力如何?有哪些启发意义?
- Uni - app from scratch - page communications (3)
- SRE ops declassified - service quality target: the SLI, SLO, SLA
- 在速率分割缓存中工作提前平滑的要求是什么呢?
- Taught you how to locate online MySQL lock timeout problem, BaoJiao package
- 白话机器学习-卷积神经网络CNN
猜你喜欢
随机推荐
将多维数组变成一维数组及数组转置
【电商运营】网上商店如何利用好自己的营销数据达成目标?
harbor-offline-installer harbor安装
Taught you how to locate online MySQL lock timeout problem, BaoJiao package
面部表情识别---学习笔记
Detailed explanation of pod
和为S的连续正数序列
基于隐语义模型的协同过滤推荐之用户商品推荐列表
Go-Excelize API源码阅读(一)——NewFile()
解决mysql语句MAX()函数中出现的问题
『牛客|每日一题』N皇后问题
Qt入门(三)——计算器项目的实现
为啥强烈禁止使用Calendar?
MySQL:索引的基础知识
云上的移动性能测试平台
在VR里弹空气吉他?开发者:手势优化有技巧
What are the core problems in the database application system
【论文阅读】Virtual Adversarial Training: a Regularization Method for SL and SSL
Embedded system driver primary [7] - kernel memory management
网页使用微信扫码登录









