美文网首页
坑🕳Tabbar

坑🕳Tabbar

作者: _白羊 | 来源:发表于2018-07-27 21:15 被阅读6次

    在Tabbar中设置tab选中与未选中样式

    child: new TabBar(
      controller: tabController,
      labelColor: Color.fromRGBO(102, 68, 204, 1.0),  // tab选中标签色
       unselectedLabelColor: Color.fromRGBO(197, 198, 218, 1.0),  // tab未选中标签色
       indicator: BoxDecoration(),
      tabs: _navigationViews
            .map((NavigationIconView navigationView) => navigationView.item)
            .toList(),
     ),
    

    tabs中的icon不能使用IconTheme设置样式,会导致样式冲突,直接用Icon

    icon: const Icon(StudyInIcons.index),
    

    相关文章

      网友评论

          本文标题:坑🕳Tabbar

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