取消tabBar被激活tab的下划线

和自甴很熟 提交于 2019-11-28 07:41:13

 

  TabBar(
          indicator: const BoxDecoration(),   //取消下划线
        unselectedLabelColor: Colors.black38,       //未被激活样式的颜色
        indicatorColor: Colors.black54,         //被激活的字体颜色
        indicatorSize: TabBarIndicatorSize.label,    //指示器长度和标签长度是一样的
        indicatorWeight: 1.0,       //下划线粗度
          labelColor: Colors.black,
          tabs: <Widget>[
            Tab(child: Text(
              '充电',
              style: TextStyle(
                fontSize: ScreenUtil.getInstance().setSp(38)
              ),
              ),
            ),
            Tab(child: Text(
              '停车',
              style: TextStyle(
                fontSize: ScreenUtil.getInstance().setSp(38)
              ),
              ),
            ),
            Tab(child: Text(
              '用车',
              style: TextStyle(
                fontSize: ScreenUtil.getInstance().setSp(38)
              ),
              ),
            ),
          ],
        ),

  

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!