mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 14:59:29 +01:00
Merge branch 'braid/spaces-fix' into 'main'
fix: spces bottom sheet not scrollable See merge request famedly/fluffychat!850
This commit is contained in:
commit
f492a7a4a2
@ -29,10 +29,10 @@ class SpacesDrawer extends StatelessWidget {
|
||||
controller.snapBackSpacesSheet();
|
||||
return false;
|
||||
},
|
||||
child: ListView.builder(
|
||||
shrinkWrap: true,
|
||||
itemCount: spaceHierarchy.length,
|
||||
itemBuilder: (BuildContext context, int index) {
|
||||
child: Column(
|
||||
children: List.generate(
|
||||
spaceHierarchy.length,
|
||||
(index) {
|
||||
if (index == 0) {
|
||||
return ListTile(
|
||||
selected: currentIndex == index,
|
||||
@ -78,6 +78,7 @@ class SpacesDrawer extends StatelessWidget {
|
||||
}
|
||||
},
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user