AppBar(
title: Text('AppBarDemoPage'),
bottom: TabBar(
//将tab放在appbar中...Tab(text:'电影'),
Tab(text:'电视剧'),
],
),
),
body: TabBarView...我们将AppBar中Tab放入我们的TabBar组件。...Expanded(
flex: 1,
child: TabBar(
//将tab放在appbar中...Widget>[
Text('热销'),
Text('推荐'),
],
),
),
body: TabBarView