Flutter when text is bigger than input, text disappears - Stack Overflow

PHOTO EMBED

Mon Jun 24 2024 05:25:36 GMT+0000 (Coordinated Universal Time)

Saved by @vaxate #dart

Container(
  height: 20,
  width: 100,
  child: TextFormField(
    maxLines: 1,
    decoration: InputDecoration(
      isDense: true,
      contentPadding: EdgeInsets.fromLTRB(5.0, 1.0, 5.0, 1.0),
    ),
    onChanged: (value) {
      print(value);
    },
  ),
);
content_copyCOPY

https://stackoverflow.com/questions/59536041/flutter-when-text-is-bigger-than-input-text-disappears