Remove Number Count In Textfield Flutter

[Solved] Remove Number Count In Textfield Flutter | Dart - Code Explorer | yomemimo.com
Question : remove number count in textfield flutter

Answered by : mizanur-rahaman

TextField( maxLength: 2, decoration: InputDecoration(	counterText: '' ),
),

Source : | Last Update : Sat, 14 May 22

Question : remove count down in textfield flutter

Answered by : cooperative-caribou-okib3apu1vkj

TextField( decoration: InputDecoration( hintText: "Email", counterText: "", ), maxLength: 40,
),

Source : https://stackoverflow.com/questions/51893926/how-can-i-hide-letter-counter-from-bottom-of-textfield-in-flutter | Last Update : Mon, 06 Dec 21

Answers related to remove number count in textfield flutter

Code Explorer Popular Question For Dart