1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Fix appearance issue

This commit is contained in:
2021-04-07 16:16:33 +02:00
parent 5bca30b634
commit 7497fc5c65
2 changed files with 13 additions and 8 deletions

View File

@ -106,13 +106,19 @@ class _AuthorizedGroupPageScreenState
child: Column(
children: [
_buildGroupPageHeader(),
Material(
color: _headerColor,
child: TabBar(
isScrollable: _tabController.length > 4,
tabs: _tabs.map((e) => e.tab).toList(),
controller: _tabController,
),
Row(
children: [
Expanded(
child: Material(
color: _headerColor,
child: TabBar(
isScrollable: true,
tabs: _tabs.map((e) => e.tab).toList(),
controller: _tabController,
),
),
),
],
),
Expanded(
child: TabBarView(