Answers for "remove number count in textfield flutter"

2

remove number count in textfield flutter

TextField(
  maxLength: 2,
  decoration: InputDecoration(
  	counterText: ''
  ),
),
Posted by: Guest on May-07-2022
0

remove count down in textfield flutter

TextField(
  decoration: InputDecoration(
    hintText: "Email",
    counterText: "",
  ),
  maxLength: 40,
),
Posted by: Guest on November-29-2021

Code answers related to "remove number count in textfield flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language