CAKE-333 | increased area of tapping on "Coin control"

OleksandrSobol committed Jul 22, 2021 at 14:49 UTC 800a8c6984e260a0a53f8bbc96ee4dafb37d4448
1 file changed +19 -16
lib/src/screens/send/send_page.dart
+19 -16
@@ -436,22 +436,25 @@ class SendPage extends BasePage {
436 child: GestureDetector(
437 onTap: () => Navigator.of(context)
438 .pushNamed(Routes.unspentCoinsList),
439 - child: Row(
440 - mainAxisAlignment:
441 - MainAxisAlignment.spaceBetween,
442 - children: [
443 - Text(
444 - S.of(context).coin_control,
445 - style: TextStyle(
446 - fontSize: 12,
447 - fontWeight: FontWeight.w600,
448 - color: Colors.white)),
449 - Icon(
450 - Icons.arrow_forward_ios,
451 - size: 12,
452 - color: Colors.white,
453 - )
454 - ],
439 + child: Container(
440 + color: Colors.transparent,
441 + child: Row(
442 + mainAxisAlignment:
443 + MainAxisAlignment.spaceBetween,
444 + children: [
445 + Text(
446 + S.of(context).coin_control,
447 + style: TextStyle(
448 + fontSize: 12,
449 + fontWeight: FontWeight.w600,
450 + color: Colors.white)),
451 + Icon(
452 + Icons.arrow_forward_ios,
453 + size: 12,
454 + color: Colors.white,
455 + )
456 + ],
457 + )
458 )
459 )
460 )