mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-13 14:14:41 +00:00
wrap theme column in SingleChildScrollView
is this... it? surely not. surely we need more than this
This commit is contained in:
parent
3104fdd856
commit
7a4832e873
1 changed files with 3 additions and 2 deletions
|
@ -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
|
|||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue