Closed Devlonoah closed 1 year ago
Hello @Devlonoah !
You can use built-in method.
Check this out.
https://github.com/gtgalone/currency_text_input_formatter#with-built-in-methods
// Built-in Methods
print(formatter.getFormattedValue()); // $ 2,000
print(formatter.getUnformattedValue()); // 2000.00
print(formatter.format('2000')); // $ 2,000
thanks.
When used with textfield ,the output I get is something like this:
USD20,000
.Is there a way to get a formatted currency without the currency, like this:
20,000
.?