mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-21 18:24:41 +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()],
|
toolbarButtons: [(_) => KeyboardDoneButton()],
|
||||||
)
|
)
|
||||||
]),
|
]),
|
||||||
|
child: Container(
|
||||||
|
height: 0,
|
||||||
|
color: Theme.of(context).backgroundColor,
|
||||||
child: Container(
|
child: Container(
|
||||||
height: sendViewModel.isElectrumWallet ? 470 : 445,
|
height: sendViewModel.isElectrumWallet ? 470 : 445,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
|
@ -431,6 +434,7 @@ class SendCardState extends State<SendCard>
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
)
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -151,7 +151,7 @@ abstract class SendViewModelBase with Store {
|
||||||
@action
|
@action
|
||||||
Future<void> commitTransaction() async {
|
Future<void> commitTransaction() async {
|
||||||
String address = outputs.fold('', (acc, value) {
|
String address = outputs.fold('', (acc, value) {
|
||||||
return acc + value.address + '\n';
|
return acc + value.address + '\n\n';
|
||||||
});
|
});
|
||||||
|
|
||||||
address = address.trim();
|
address = address.trim();
|
||||||
|
|
Loading…
Reference in a new issue