Cw 43 subaddress renaming visual bug (#271)

* changed background * fixed format * fix issues from review

Serhii committed Feb 11, 2022 at 15:49 UTC 872098d6b8d9f800d25cd2d47a8b2ad1b2f20935
1 file changed +8 -2
lib/src/screens/receive/receive_page.dart
+8 -2
@@ -132,7 +132,13 @@ class ReceivePage extends BasePage {
132 isLight: currentTheme.type == ThemeType.light),
133 ),
134 Observer(
135 - builder: (_) => ListView.separated(
135 + builder: (_) => ClipRRect(
136 + borderRadius: BorderRadius.only(
137 + topLeft: Radius.circular(30),
138 + topRight: Radius.circular(30)),
139 + child: Container(
140 + color: Theme.of(context).textTheme.display2.decorationColor,
141 + child: ListView.separated(
142 padding: EdgeInsets.all(0),
143 separatorBuilder: (context, _) => Container(
144 height: 1, color: Theme.of(context).dividerColor),
@@ -207,7 +213,7 @@ class ReceivePage extends BasePage {
213 topRight: Radius.circular(30)),
214 child: cell,
215 );
210 - })),
216 + })))),
217 ],
218 ),
219 ));