Closed xiaobaogeit closed 4 years ago
@kaina404 比如lib/pages/home/home_page.dart
bottomTextString: _tabs,
bottom: TabBar(
// These are the widgets to put in each tab in the tab bar.
tabs: _tabs.map((String name) => Container(
child: Text(
name,
),
padding: const EdgeInsets.only(bottom: 5.0),
)) .toList(),
),
bottomTextString: _tabs,
bottom: TabBar(
tabController:tabController,
tabs: _tabs.map((String name) => Container(
child: Text(
name,
),
padding: const EdgeInsets.only(bottom: 5.0),
)) .toList(),
),
@xiaobaogeit 能具体一点么?