Make a disabled TextFormField scrollable

77 Views Asked by At

To put it simple, I have this:

TextFormField (
  enabled: false,
  readOnly: false,
  initialValue: 'lorem\nipsum\ndolor\nsit\namet\nconsectetur\nadipiscing\nelit\nsed',
  minLines: 5,
  maxLines: 5,
),

This input has each of the 5 first words of the lorem ipsum visible, and the rest of them below, which should be accessible using the scroll.

However, if the input is set to enabled: false, the input cannot be scrolled anymore, thus making the full text not visible.

Using the readOnly is not an option neither, since it does not provide the desired user experience because, for instance, the input is clickable.

A multiline input being scrollable is something that HTML already does when using <textarea disabled>, so why wouldn't Flutter?

Is there a way to make the TextFormField scrollable, so the hidden text can be seen?

1

There are 1 best solutions below

2
On

try using with decoration

TextFormField(
          enabled: true,
          readOnly: true,
          decoration: InputDecoration(border: InputBorder.none),
          initialValue: 'lorem\nipsum\ndolor\nsit\namet\nconsectetur\nadipiscing\nelit\nsed\ndasd\ndasdas',
          minLines: 5,
          maxLines: 5,
        ),