Add UpperCaseInput formatter

This commit is contained in:
Neeraj Gupta 2023-02-15 15:06:54 +05:30
parent a149e661f5
commit fecaeb797b
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -0,0 +1,12 @@
import "package:flutter/services.dart";
class UpperCaseTextFormatter extends TextInputFormatter {
@override
TextEditingValue formatEditUpdate(
TextEditingValue oldValue, TextEditingValue newValue) {
return TextEditingValue(
text: newValue.text.toUpperCase(),
selection: newValue.selection,
);
}
}