flutter TabBar+TabBarView使用要注意的10点问题以及自定义各种TabBar指示器样式

Tabbar属性介绍:

const TabBar({
   
    Key key,
    @required this.tabs,//必须实现的,设置需要展示的tabs,最少需要两个,Tab组件为icon和text上下排列的系统组件,一般使用Tab来快速构建各个选项
    this.controller,  // 控制器
    this.isScrollable = 

你可能感兴趣的:(Flutter开发笔记精选,flutter,TabBar,TabBarView)