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( content: Column(
children: <Widget>[ children: <Widget>[
Container( Container(
height: sendViewModel.isElectrumWallet ? 470 : 445, height: sendViewModel.isElectrumWallet ? 490 : 465,
child: Observer( child: Observer(
builder: (_) { builder: (_) {
return PageView.builder( return PageView.builder(

View file

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