skip to Main Content

Flutter Make Textfield input become uppercase

Is any update for this question Flutter TextField value always uppercase & debounce ? I've already tried some of the code to make the input text become uppercase. class UpperCaseTextFormatter extends TextInputFormatter { @override TextEditingValue formatEditUpdate(TextEditingValue oldValue, TextEditingValue newValue) {…

VIEW QUESTION

Please help me solve this problem textfield get value in flutter

@override Widget build(BuildContext context) { final AppStateManager manager = AppStateManager.of(context); String textLetter = manager.appState.replacementsController.text; String textCodeElec = manager.appState.replacementsController.value.text; log('data: ${manager.appState.textEditingDeltaHistory.length}'); if (textLetter == 'a' || textLetter == 'A') { textCodeElec = '90'; //a print 90 } if (textLetter == 'b'…

VIEW QUESTION

Flutter, insert textfield into sqflite

I'm trying to fill in sqflite tables using textfields, but it creates a separate table instead of filling in the various fields class _InputBarState extends State<InputBar> { final _controller = TextEditingController(); final _controller1 = TextEditingController(); final _controller2 = TextEditingController(); final…

VIEW QUESTION
Back To Top
Search