From 872098d6b8d9f800d25cd2d47a8b2ad1b2f20935 Mon Sep 17 00:00:00 2001 From: Serhii Date: Fri, 11 Feb 2022 15:49:46 +0200 Subject: [PATCH] Cw 43 subaddress renaming visual bug (#271) * changed background * fixed format * fix issues from review --- lib/src/screens/receive/receive_page.dart | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/src/screens/receive/receive_page.dart b/lib/src/screens/receive/receive_page.dart index 5d37e507d..fa9d6befe 100644 --- a/lib/src/screens/receive/receive_page.dart +++ b/lib/src/screens/receive/receive_page.dart @@ -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, ); - })), + })))), ], ), ));