diff --git a/violet/lib/pages/settings/settings_page.dart b/violet/lib/pages/settings/settings_page.dart index b856bc65c..017220cc1 100644 --- a/violet/lib/pages/settings/settings_page.dart +++ b/violet/lib/pages/settings/settings_page.dart @@ -841,27 +841,29 @@ class _SettingsPageState extends State actions: [okButton, cancelButton], title: const Text('E-Hentai Categories'), contentPadding: const EdgeInsets.fromLTRB(12, 8, 12, 8), - content: Column( - mainAxisSize: MainAxisSize.min, - children: [ - const Text('f_cats: '), - ...[ - TextField( - controller: catsController, - readOnly: true, - ), - doujinshiButton, - mangaButton, - artistcgButton, - gamecgButton, - westernButton, - nonhButton, - imagesetButton, - cosplayButton, - asianpornButton, - miscButton, - ].map((e) => Row(children: [Expanded(child: e)])), - ], + content: new SingleChildScrollView( + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + const Text('f_cats: '), + ...[ + TextField( + controller: catsController, + readOnly: true, + ), + doujinshiButton, + mangaButton, + artistcgButton, + gamecgButton, + westernButton, + nonhButton, + imagesetButton, + cosplayButton, + asianpornButton, + miscButton, + ].map((e) => Row(children: [Expanded(child: e)])), + ], + ), ), ), );