I would like to move the text down to be centered in the TextFormField.
[This is what it looks like] (https://i.stack.imgur.com/0SoHm.png) [This is what I want it to look - move the text down a few pixels to be centered] (https://i.stack.imgur.com/b2wKi.png)
My font it is proximaNova and the designer requires this font.
Widget petNameField() {
return TextFormField(
controller: nameCn,
focusNode: nameFn,
autovalidateMode: AutovalidateMode.onUserInteraction,
validator: FieldValidator.validateName,
textInputAction: TextInputAction.next,
inputFormatters: [
LengthLimitingTextInputFormatter(25),
],
keyboardType: TextInputType.name,
style: R.decoration.fieldStyle(context),
decoration: R.decoration.fieldDecoration(
radius: 26,
fillColor: R.colors.textFieldFillColor.withOpacity(0.15),
borderColor: R.colors.textFieldFillColor.withOpacity(0.15),
context: context,
hintText: "pet_name",
).copyWith(
//contentPadding: EdgeInsets.fromLTRB(12, 18, 12, 12),
),
);
}
I tried using contentPadding: / wrapping the field in Padding() / adding a prefixIcon container with margin / but this padding modifies the entire field box and the text doesn't become centered.
I've been banging my head against the wall for the past day so any help is greatly appreciated!
You can fix the alignment of the text by using the height factor of the
textStyle
and content padding. Here is the working code and output image.Try to run the code on dartPad.dev