Widget _buildItemWithSizeBig(BuildContext context) { var tabs = [ const TDTab( text: '大尺寸', size: TDTabSize.large, ), const TDTab( text: '选项', size: TDTabSize.large, ), const TDTab( text: '选项', size: TDTabSize.large, ), const TDTab( text: '选项', size: TDTabSize.large, ), ]; return TDTabBar( tabs: tabs, controller: TabController(length: 4, vsync: this), backgroundColor: Colors.white, showIndicator: true); }