mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
Cw 43 subaddress renaming visual bug (#271)
* changed background * fixed format * fix issues from review
This commit is contained in:
parent
2bdd8b98d0
commit
872098d6b8
1 changed files with 8 additions and 2 deletions
|
@ -132,7 +132,13 @@ class ReceivePage extends BasePage {
|
||||||
isLight: currentTheme.type == ThemeType.light),
|
isLight: currentTheme.type == ThemeType.light),
|
||||||
),
|
),
|
||||||
Observer(
|
Observer(
|
||||||
builder: (_) => ListView.separated(
|
builder: (_) => ClipRRect(
|
||||||
|
borderRadius: BorderRadius.only(
|
||||||
|
topLeft: Radius.circular(30),
|
||||||
|
topRight: Radius.circular(30)),
|
||||||
|
child: Container(
|
||||||
|
color: Theme.of(context).textTheme.display2.decorationColor,
|
||||||
|
child: ListView.separated(
|
||||||
padding: EdgeInsets.all(0),
|
padding: EdgeInsets.all(0),
|
||||||
separatorBuilder: (context, _) => Container(
|
separatorBuilder: (context, _) => Container(
|
||||||
height: 1, color: Theme.of(context).dividerColor),
|
height: 1, color: Theme.of(context).dividerColor),
|
||||||
|
@ -207,7 +213,7 @@ class ReceivePage extends BasePage {
|
||||||
topRight: Radius.circular(30)),
|
topRight: Radius.circular(30)),
|
||||||
child: cell,
|
child: cell,
|
||||||
);
|
);
|
||||||
})),
|
})))),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
));
|
));
|
||||||
|
|
Loading…
Reference in a new issue