Currently, the limit counter is placed below, but I would like to have it inside the TextFormField at the end. How can I do that?
child: TextFormField(
controller: nameController,
maxLength: 50,
validator: (String? value) {
if (value!.trim().isEmpty) {
return 'error';
}
return null;
},
onSaved: (String? value) {
name = value!.trim();
},
),