mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-14 06:34:33 +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
|
@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
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
);
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue