79399273

Date: 2025-01-30 08:53:42
Score: 1
Natty:
Report link

Just try to wrap your TextFormField or TextField into ConstrainedBox with maxHeight constraints

ConstrainedBox(
    constraints: const BoxConstraints(
           maxHeight: 40),
    child: TextField(...)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Volodymyr Kuleba