mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-03 11:46:41 +00:00
tx card decimal places fix
This commit is contained in:
parent
46e62f2b2c
commit
748d70e34f
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ class _TransactionCardState extends ConsumerState<TransactionCard> {
|
||||||
"$prefix${Format.localizedStringAsFixed(
|
"$prefix${Format.localizedStringAsFixed(
|
||||||
value: amount.decimal,
|
value: amount.decimal,
|
||||||
locale: locale,
|
locale: locale,
|
||||||
decimalPlaces: coin.decimals,
|
decimalPlaces: amount.fractionDigits,
|
||||||
)} $unit",
|
)} $unit",
|
||||||
style: STextStyles.itemSubtitle12(context),
|
style: STextStyles.itemSubtitle12(context),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue