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