textScaleFactor : -
textScaleFactor: 1.0
How to use TextFormField in flutter to fix text size for all type of resolution ?
CodePudding user response:
Wrap your TextFormField
with MediaQuery
like so.
MediaQuery(
data: const MediaQueryData(textScaleFactor: 2.0),
child: TextFormField(),
),