Search code examples
flutterdarttextfield

Shrink font size of TextField on overflow - Flutter


I want the font size of TextField content to shrink when a specific width of TextField is reached. I've tried a few solutions such as calculating the text width using text span but I'm hoping for a more performant solution.

Any help is much appreciated.


Solution

  • The auto_size_text package only works for regular Text widgets.

    auto_size_text_field on the other hand will give you what you want.