Cw 43 subaddress renaming visual bug (#271)

* changed background

* fixed format

* fix issues from review
wownero
Serhii 2 years ago committed by GitHub
parent 2bdd8b98d0
commit 872098d6b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -132,7 +132,13 @@ class ReceivePage extends BasePage {
isLight: currentTheme.type == ThemeType.light),
),
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),
separatorBuilder: (context, _) => Container(
height: 1, color: Theme.of(context).dividerColor),
@ -207,7 +213,7 @@ class ReceivePage extends BasePage {
topRight: Radius.circular(30)),
child: cell,
);
})),
})))),
],
),
));

Loading…
Cancel
Save