I want to make use of a TextFormField in my flutter app.
The text input field is show with the label. The hint text is not visible. When I select the widget, the hint text is shown and at the same time the label style changes. The text shrinks and become blue.
I tried this by just adding the code in the default flutter app, so it easy to reproduce
TextFormField( decoration: InputDecoration( labelText: "Demo Label", hintText: "Foo" )
Where can I change this behaviour? I would like to have a consistent label, no matter if the widget is selected or not.