mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-02-25 10:50:40 +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();
|
controller.snapBackSpacesSheet();
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
child: ListView.builder(
|
child: Column(
|
||||||
shrinkWrap: true,
|
children: List.generate(
|
||||||
itemCount: spaceHierarchy.length,
|
spaceHierarchy.length,
|
||||||
itemBuilder: (BuildContext context, int index) {
|
(index) {
|
||||||
if (index == 0) {
|
if (index == 0) {
|
||||||
return ListTile(
|
return ListTile(
|
||||||
selected: currentIndex == index,
|
selected: currentIndex == index,
|
||||||
@ -78,6 +78,7 @@ class SpacesDrawer extends StatelessWidget {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user