Skip to content

Commit 9561dd9

Browse files
committed
settings: Make settings scrollable
Otherwise, the settings can overflow at the bottom in landscape mode.
1 parent c979279 commit 9561dd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/widgets/settings.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class SettingsPage extends StatelessWidget {
2020
return Scaffold(
2121
appBar: ZulipAppBar(
2222
title: Text(zulipLocalizations.settingsPageTitle)),
23-
body: Column(children: [
23+
body: SingleChildScrollView(child: Column(children: [
2424
const _ThemeSetting(),
2525
const _BrowserPreferenceSetting(),
2626
const _VisitFirstUnreadSetting(),
@@ -30,7 +30,7 @@ class SettingsPage extends StatelessWidget {
3030
title: Text(zulipLocalizations.experimentalFeatureSettingsPageTitle),
3131
onTap: () => Navigator.push(context,
3232
ExperimentalFeaturesPage.buildRoute()))
33-
]));
33+
])));
3434
}
3535
}
3636

0 commit comments

Comments
 (0)