Удалить количество номеров в Textfield Flutter
TextField(
maxLength: 2,
decoration: InputDecoration(
counterText: ''
),
),
CodePadding
TextField(
maxLength: 2,
decoration: InputDecoration(
counterText: ''
),
),
TextField(
decoration: InputDecoration(
hintText: "Email",
counterText: "",
),
maxLength: 40,
),