fix: Let bottom space bar scroll

This commit is contained in:
Krille Fear 2021-11-15 10:09:23 +01:00
parent a5f1925f03
commit ecd93b0a37
1 changed files with 41 additions and 34 deletions

View File

@ -29,7 +29,12 @@ class SpacesBottomBar extends StatelessWidget {
false) || false) ||
(sync.rooms?.leave?.isNotEmpty ?? false)), (sync.rooms?.leave?.isNotEmpty ?? false)),
builder: (context, snapshot) { builder: (context, snapshot) {
return SalomonBottomBar( return Container(
height: 56,
alignment: Alignment.center,
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: SalomonBottomBar(
itemPadding: const EdgeInsets.all(8), itemPadding: const EdgeInsets.all(8),
currentIndex: currentIndex, currentIndex: currentIndex,
onTap: (i) => controller.setActiveSpaceId( onTap: (i) => controller.setActiveSpaceId(
@ -64,6 +69,8 @@ class SpacesBottomBar extends StatelessWidget {
)) ))
.toList(), .toList(),
], ],
),
),
); );
}), }),
); );