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