【发布时间】:2022-01-17 16:22:56
【问题描述】:
我厌倦了标签栏,没有找到答案。我有 3 个标签栏,我想像类别一样将标签放在左侧?
我想要的标签栏 enter image description here
我的标签栏 enter image description here
我的代码
// BOTTOM
bottom: PreferredSize(
preferredSize: const Size.fromHeight(kToolbarHeight),
child: Align(
alignment: Alignment.centerLeft,
child: Container(
width: MediaQuery.of(context).size.width / 1.1,
child: TabBar(
labelPadding: EdgeInsets.all(0),
labelColor: Colors.white,
labelStyle: poppins.copyWith(
fontSize: 15,
fontWeight: bold,
),
unselectedLabelColor: Color(0xff585861),
indicatorColor: Colors.white,
indicatorSize: TabBarIndicatorSize.label,
// TABS
tabs: [
Tab(
text: 'Following',
),
Tab(
text: 'Trending',
),
Tab(
text: 'Search',
),
],
),
),
),
),
【问题讨论】:
标签: flutter dart flutter-layout