Cw 43 subaddress renaming visual bug (#271)

* changed background

* fixed format

* fix issues from review
This commit is contained in:
Serhii 2022-02-11 15:49:46 +02:00 committed by GitHub
parent 2bdd8b98d0
commit 872098d6b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
); );
})), })))),
], ],
), ),
)); ));