fix: Let bottom space bar scroll

onboarding
Krille Fear 4 years ago
parent 26751f3ab4
commit 7e2dd48796

@ -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(),
], ],
),
),
); );
}), }),
); );

Loading…
Cancel
Save