QR format changed.

This commit is contained in:
Andrey Shabarshov 2021-12-07 15:23:49 +00:00
parent c4d1013397
commit 7f4191bcc2

View File

@ -64,7 +64,7 @@ namespace QRBee.ViewModels
public async void OnGenerateQrClicked(object obj)
{
QrCode = $"{Name}.{Amount}.{DateTime.Now}";
QrCode = $"{Name}.{Amount:0.00}.{DateTime.UtcNow:O}";
// Prefixing with `//` switches to a different navigation stack instead of pushing to the active one
// await Shell.Current.GoToAsync($"//{nameof(AboutPage)}");
}