Added scrollbar to room info bottomsheet

This commit is contained in:
Jakob Meier 2023-12-22 20:38:19 +01:00
parent 2fa9486db3
commit a897d4c4af
No known key found for this signature in database
GPG key ID: 66BDC7E6A01A6152

View file

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