Skip to content

Instantly share code, notes, and snippets.

View matheusess's full-sized avatar

Matheus Emmanuel matheusess

  • Curitiba, Paraná - Brasil
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;
}