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 August 6, 2025 19:04
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;
}