mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 19:49:22 +00:00
CAKE-345 | increased height of send card and padding for address textfield
This commit is contained in:
parent
383d2abcc5
commit
bcf853170a
2 changed files with 2 additions and 3 deletions
|
@ -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(
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue