simc / auto_size_text

Flutter widget that automatically resizes text to fit perfectly within its bounds.
https://pub.dev/packages/auto_size_text
MIT License
2.06k stars 240 forks source link

How we used this with Row & column #51

Open luckymehndiratta opened 4 years ago

luckymehndiratta commented 4 years ago

as we used in our project and insert the text into a row and then column then put this AutoSizeText nothing will happen and yellow lines still show

hiscodesmells commented 4 years ago

The AutoSizetext widget needs bounded constraints to work. So, if you want to use it as a child of the Column, you can wrap the AutoSizeText widget inside a Flexible widget.