wrap theme column in SingleChildScrollView

is this... it?  surely not.  surely we need more than this
This commit is contained in:
sneurlax 2023-02-09 17:49:42 -06:00
parent 3104fdd856
commit 7a4832e873

View file

@ -27,7 +27,8 @@ class _AppearanceOptionSettings
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
debugPrint("BUILD: $runtimeType"); debugPrint("BUILD: $runtimeType");
return Column( return SingleChildScrollView(
child: Column(
children: [ children: [
Padding( Padding(
padding: const EdgeInsets.only( padding: const EdgeInsets.only(
@ -145,7 +146,7 @@ class _AppearanceOptionSettings
), ),
), ),
], ],
); ));
} }
} }