I want to resize my TabBar because default height is too much, how can achieve it? Thanks.
DefaultTabController(
length: 2,
child: Scaffold(
appBar: AppBar(
title: Text('Flutter App'),
bottom: TabBar(
tabs: <Widget>[
Text('Tab 1'),
Text('Tab 2'),
],
),
),
body: TabBarView(
children: <Widget>[
Icon(Icons.apps),
Icon(Icons.apps),
],
),
),
)