add note decryption from QR code (#466)

This commit is contained in:
Serhii 2022-08-11 17:40:38 +03:00 committed by GitHub
parent 08f1976921
commit d22738da64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -118,6 +118,7 @@ class SendCardState extends State<SendCard>
final paymentRequest = PaymentRequest.fromUri(uri);
addressController.text = paymentRequest.address;
cryptoAmountController.text = paymentRequest.amount;
noteController.text = paymentRequest.note;
},
options: [
AddressTextFieldOption.paste,

View file

@ -1,18 +1,22 @@
class PaymentRequest {
PaymentRequest(this.address, this.amount);
PaymentRequest(this.address, this.amount, this.note);
factory PaymentRequest.fromUri(Uri uri) {
var address = "";
var amount = "";
var note = "";
if (uri != null) {
address = uri.path;
amount = uri.queryParameters['tx_amount'] ?? uri.queryParameters['amount'] ?? "";
note = uri.queryParameters['tx_description']
?? uri.queryParameters['message'] ?? "";
}
return PaymentRequest(address, amount);
return PaymentRequest(address, amount, note);
}
final String address;
final String amount;
final String note;
}