mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 09:29:48 +00:00
CAKE-345 | fixed send_card.dart
This commit is contained in:
parent
f84c7c9a1c
commit
383d2abcc5
1 changed files with 353 additions and 349 deletions
|
@ -63,7 +63,9 @@ class SendCardState extends State<SendCard>
|
|||
super.build(context);
|
||||
_setEffects(context);
|
||||
|
||||
return KeyboardActions(
|
||||
return Stack(
|
||||
children: [
|
||||
KeyboardActions(
|
||||
config: KeyboardActionsConfig(
|
||||
keyboardActionsPlatform: KeyboardActionsPlatform.IOS,
|
||||
keyboardBarColor: Theme.of(context).accentTextTheme.body2
|
||||
|
@ -81,8 +83,9 @@ class SendCardState extends State<SendCard>
|
|||
]),
|
||||
child: Container(
|
||||
height: 0,
|
||||
color: Theme.of(context).backgroundColor,
|
||||
child: Container(
|
||||
color: Colors.transparent,
|
||||
)),
|
||||
Container(
|
||||
height: sendViewModel.isElectrumWallet ? 470 : 445,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.only(
|
||||
|
@ -435,7 +438,8 @@ class SendCardState extends State<SendCard>
|
|||
),
|
||||
),
|
||||
)
|
||||
));
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
void _setEffects(BuildContext context) {
|
||||
|
|
Loading…
Reference in a new issue