Skip to content

Instantly share code, notes, and snippets.

View andre-bahia's full-sized avatar
🤟

André Luis andre-bahia

🤟
View GitHub Profile
@andre-bahia
andre-bahia / CurrencyPtBrInputFormatter.dart
Last active April 11, 2024 14:48
Flutter TextInputFormatter Currency pt_BR
import 'package:flutter/services.dart';
import 'package:intl/intl.dart';
class CurrencyPtBrInputFormatter extends TextInputFormatter {
TextEditingValue formatEditUpdate(TextEditingValue oldValue, TextEditingValue newValue) {
if(newValue.selection.baseOffset == 0){
return newValue;
}