We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c979279 commit 9561dd9Copy full SHA for 9561dd9
lib/widgets/settings.dart
@@ -20,7 +20,7 @@ class SettingsPage extends StatelessWidget {
20
return Scaffold(
21
appBar: ZulipAppBar(
22
title: Text(zulipLocalizations.settingsPageTitle)),
23
- body: Column(children: [
+ body: SingleChildScrollView(child: Column(children: [
24
const _ThemeSetting(),
25
const _BrowserPreferenceSetting(),
26
const _VisitFirstUnreadSetting(),
@@ -30,7 +30,7 @@ class SettingsPage extends StatelessWidget {
30
title: Text(zulipLocalizations.experimentalFeatureSettingsPageTitle),
31
onTap: () => Navigator.push(context,
32
ExperimentalFeaturesPage.buildRoute()))
33
- ]));
+ ])));
34
}
35
36
0 commit comments