mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-24 16:18:48 +00:00
CAKE-345 | fixed bug on send_card.dart and fixed addresses for transaction details
This commit is contained in:
parent
a8375321bc
commit
f84c7c9a1c
2 changed files with 329 additions and 325 deletions
|
@ -79,6 +79,9 @@ class SendCardState extends State<SendCard>
|
|||
toolbarButtons: [(_) => KeyboardDoneButton()],
|
||||
)
|
||||
]),
|
||||
child: Container(
|
||||
height: 0,
|
||||
color: Theme.of(context).backgroundColor,
|
||||
child: Container(
|
||||
height: sendViewModel.isElectrumWallet ? 470 : 445,
|
||||
decoration: BoxDecoration(
|
||||
|
@ -431,6 +434,7 @@ class SendCardState extends State<SendCard>
|
|||
)
|
||||
),
|
||||
),
|
||||
)
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
@ -151,7 +151,7 @@ abstract class SendViewModelBase with Store {
|
|||
@action
|
||||
Future<void> commitTransaction() async {
|
||||
String address = outputs.fold('', (acc, value) {
|
||||
return acc + value.address + '\n';
|
||||
return acc + value.address + '\n\n';
|
||||
});
|
||||
|
||||
address = address.trim();
|
||||
|
|
Loading…
Reference in a new issue