CAKE-345 | increased height of send card and padding for address textfield

OleksandrSobol committed Aug 11, 2021 at 18:08 UTC bcf853170a2bb5b950dd8209806feb392cd28091
2 files changed +2 -3
lib/src/screens/send/send_page.dart
+1 -1
@@ -79,7 +79,7 @@ class SendPage extends BasePage {
79 content: Column(
80 children: <Widget>[
81 Container(
82 - height: sendViewModel.isElectrumWallet ? 470 : 445,
82 + height: sendViewModel.isElectrumWallet ? 490 : 465,
83 child: Observer(
84 builder: (_) {
85 return PageView.builder(
lib/src/screens/send/widgets/send_card.dart
+1 -2
@@ -86,7 +86,6 @@ class SendCardState extends State<SendCard>
86 color: Colors.transparent,
87 )),
88 Container(
89 - height: sendViewModel.isElectrumWallet ? 470 : 445,
89 decoration: BoxDecoration(
90 borderRadius: BorderRadius.only(
91 bottomLeft: Radius.circular(24),
@@ -100,7 +99,7 @@ class SendCardState extends State<SendCard>
99 ], begin: Alignment.topLeft, end: Alignment.bottomRight),
100 ),
101 child: Padding(
103 - padding: EdgeInsets.fromLTRB(24, 80, 24, 32),
102 + padding: EdgeInsets.fromLTRB(24, 100, 24, 32),
103 child: SingleChildScrollView(
104 child: Column(
105 mainAxisSize: MainAxisSize.min,