Skip to content

Instantly share code, notes, and snippets.

@valterh4ck3r
Last active March 31, 2021 15:32
Show Gist options
  • Save valterh4ck3r/8693908f2d18fd5bc41c11666cff5b45 to your computer and use it in GitHub Desktop.
Save valterh4ck3r/8693908f2d18fd5bc41c11666cff5b45 to your computer and use it in GitHub Desktop.
Flutter Value Text to BRL (Real)
import 'package:flutter_masked_text/flutter_masked_text.dart';
class MaskUtil{
static MoneyMaskedTextController mask = MoneyMaskedTextController(decimalSeparator: ',', thousandSeparator: '.');
static String textToBRL(String value){
mask.text = value;
return mask.text;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment