ajuste android para subir nova versão 1.0.7

This commit is contained in:
Reginaldo
2024-08-12 19:40:22 -03:00
parent 58fcb66022
commit 6c770ef81c
21 changed files with 145 additions and 159 deletions

View File

@@ -2,8 +2,7 @@ import 'package:flutter/services.dart';
class FormatText extends TextInputFormatter{
@override
TextEditingValue formatEditUpdate(
TextEditingValue txtOdl,TextEditingValue txtNew){
TextEditingValue formatEditUpdate(TextEditingValue txtOdl,TextEditingValue txtNew){
return txtNew.copyWith(text: txtNew.text.toUpperCase());
}
}