CWA-205 | added background color to restore options page and restore wallet options page
Oleksandr Sobol committed
Apr 30, 2020 at 22:28 UTC
dbddc20af350c1334fefc4a27d4217cd287fd40b
2 files changed
+6
lib/src/screens/restore/restore_options_page.dart
+3
@@ -20,7 +20,10 @@ class RestoreOptionsPage extends BasePage {
20
@override
21
Widget body(BuildContext context) {
22
return Container(
23
+ width: double.infinity,
24
+ height: double.infinity,
25
padding: EdgeInsets.all(24),
26
+ color: PaletteDark.historyPanel,
27
child: SingleChildScrollView(
28
child: Column(
29
children: <Widget>[
lib/src/screens/restore/restore_wallet_options_page.dart
+3
@@ -24,7 +24,10 @@ class RestoreWalletOptionsPage extends BasePage {
24
final seedLanguageStore = Provider.of<SeedLanguageStore>(context);
25
26
return Container(
27
+ width: double.infinity,
28
+ height: double.infinity,
29
padding: EdgeInsets.all(24),
30
+ color: PaletteDark.historyPanel,
31
child: SingleChildScrollView(
32
child: Column(
33
children: <Widget>[