Added scrollbar to room info bottomsheet
This commit is contained in:
parent
2fa9486db3
commit
a897d4c4af
1 changed files with 4 additions and 3 deletions
|
@ -105,7 +105,7 @@ class _JoinRoomPageState extends State {
|
|||
icon: const Icon(Icons.search),
|
||||
tooltip: AppLocalizations.of(context)!.search,
|
||||
onPressed: () {
|
||||
// show searchbar
|
||||
// TODO: show searchbar
|
||||
// NOTE: location currently unknown
|
||||
},
|
||||
),
|
||||
|
@ -170,7 +170,8 @@ class _JoinRoomPageState extends State {
|
|||
return BottomSheet(
|
||||
onClosing: () {},
|
||||
builder: (ctx) {
|
||||
return Column(
|
||||
return SingleChildScrollView(
|
||||
child: Column(
|
||||
crossAxisAlignment:
|
||||
CrossAxisAlignment.center,
|
||||
mainAxisAlignment:
|
||||
|
@ -282,7 +283,7 @@ class _JoinRoomPageState extends State {
|
|||
))
|
||||
])
|
||||
],
|
||||
);
|
||||
));
|
||||
},
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue