Just try to wrap your TextFormField or TextField into ConstrainedBox with maxHeight constraints
ConstrainedBox( constraints: const BoxConstraints( maxHeight: 40), child: TextField(...)