tm-android-app/lib/constants/only_uppercase.dart
2024-08-07 09:29:30 +05:30

11 lines
323 B
Dart

import 'package:flutter/services.dart';
class UpperCaseTextFormatter extends TextInputFormatter {
@override
TextEditingValue formatEditUpdate(TextEditingValue oldValue, TextEditingValue newValue) {
return newValue.copyWith(
text: newValue.text.toUpperCase(),
selection: newValue.selection,
);
}
}