mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-12 09:32:33 +00:00
CWA-205 | added background color to restore options page and restore wallet options page
This commit is contained in:
parent
75dc42e6da
commit
dbddc20af3
2 changed files with 6 additions and 0 deletions
|
@ -20,7 +20,10 @@ class RestoreOptionsPage extends BasePage {
|
|||
@override
|
||||
Widget body(BuildContext context) {
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
height: double.infinity,
|
||||
padding: EdgeInsets.all(24),
|
||||
color: PaletteDark.historyPanel,
|
||||
child: SingleChildScrollView(
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
|
|
|
@ -24,7 +24,10 @@ class RestoreWalletOptionsPage extends BasePage {
|
|||
final seedLanguageStore = Provider.of<SeedLanguageStore>(context);
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
height: double.infinity,
|
||||
padding: EdgeInsets.all(24),
|
||||
color: PaletteDark.historyPanel,
|
||||
child: SingleChildScrollView(
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
|
|
Loading…
Reference in a new issue