flutter_multi_formatter icon indicating copy to clipboard operation
flutter_multi_formatter copied to clipboard

Decimal fractions cannot be displayed when using the ShorteningPolicy parameter

Open bvnhan72 opened this issue 1 year ago • 1 comments

image Decimal fractions cannot be displayed when using the ShorteningPolicy parameter print('1200000'.toCurrencyString(shorteningPolicy: ShorteningPolicy.Automatic, mantissaLength: 2)); -> 1M The result should be 1.2M

bvnhan72 avatar Nov 14 '23 03:11 bvnhan72

Shortening policy does not consider mantissa at all. It decides how to shorten the value on its own

caseyryan avatar Nov 27 '23 13:11 caseyryan