From 800a8c6984e260a0a53f8bbc96ee4dafb37d4448 Mon Sep 17 00:00:00 2001 From: OleksandrSobol Date: Thu, 22 Jul 2021 14:49:20 +0300 Subject: [PATCH] CAKE-333 | increased area of tapping on "Coin control" --- lib/src/screens/send/send_page.dart | 35 ++++++++++++++++------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/lib/src/screens/send/send_page.dart b/lib/src/screens/send/send_page.dart index 769254da6..45401b553 100644 --- a/lib/src/screens/send/send_page.dart +++ b/lib/src/screens/send/send_page.dart @@ -436,22 +436,25 @@ class SendPage extends BasePage { child: GestureDetector( onTap: () => Navigator.of(context) .pushNamed(Routes.unspentCoinsList), - child: Row( - mainAxisAlignment: - MainAxisAlignment.spaceBetween, - children: [ - Text( - S.of(context).coin_control, - style: TextStyle( - fontSize: 12, - fontWeight: FontWeight.w600, - color: Colors.white)), - Icon( - Icons.arrow_forward_ios, - size: 12, - color: Colors.white, - ) - ], + child: Container( + color: Colors.transparent, + child: Row( + mainAxisAlignment: + MainAxisAlignment.spaceBetween, + children: [ + Text( + S.of(context).coin_control, + style: TextStyle( + fontSize: 12, + fontWeight: FontWeight.w600, + color: Colors.white)), + Icon( + Icons.arrow_forward_ios, + size: 12, + color: Colors.white, + ) + ], + ) ) ) )