Flutter – Control Text Overflow of Floating Label of readonly TextFormField on iOS?
I'm having a readonly TextFormField widget like this: TextFormField( /// field must neither be focusable, nor must value be editable by input canRequestFocus: false, readOnly: true, controller: _textEditingController, keyboardType: TextInputType.none, style: TextStyle( fontWeight: FontWeight.w400, fontSize: 20, letterSpacing: 1, fontFamily: 'Arial',…