I've been having this problem now, and the accepted solution did not work for me for some reason.
What helped was increasing the text height. For my specific font, the text stopped clipping at the value of 1.09. It might be different for yours:
TextFormField(
// ...
style: yourTextStyle.copyWith(
height: 1.09,
)
// ...
)