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

This commit is contained in:
OleksandrSobol 2021-08-11 18:08:06 +03:00
parent 383d2abcc5
commit bcf853170a
2 changed files with 2 additions and 3 deletions

View file

@ -79,7 +79,7 @@ class SendPage extends BasePage {
content: Column(
children: <Widget>[
Container(
height: sendViewModel.isElectrumWallet ? 470 : 445,
height: sendViewModel.isElectrumWallet ? 490 : 465,
child: Observer(
builder: (_) {
return PageView.builder(

View file

@ -86,7 +86,6 @@ class SendCardState extends State<SendCard>
color: Colors.transparent,
)),
Container(
height: sendViewModel.isElectrumWallet ? 470 : 445,
decoration: BoxDecoration(
borderRadius: BorderRadius.only(
bottomLeft: Radius.circular(24),
@ -100,7 +99,7 @@ class SendCardState extends State<SendCard>
], begin: Alignment.topLeft, end: Alignment.bottomRight),
),
child: Padding(
padding: EdgeInsets.fromLTRB(24, 80, 24, 32),
padding: EdgeInsets.fromLTRB(24, 100, 24, 32),
child: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,