2

I have flexible text widget at the top of screen in which will be some text that may be really big. If text in it become really big user might scroll the screen down to find other widgets on this screen

Right now if text become big my other widgets will move down, but screen will be same size

enter image description here

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
GDTyka
  • 472
  • 3
  • 16
  • Does this answer your question? [How to scroll page in flutter](https://stackoverflow.com/questions/51765092/how-to-scroll-page-in-flutter) – Mariano Zorrilla Oct 09 '21 at 13:07

1 Answers1

3

Wrape your text with SingleChildScrollView and then add this line

 scrollDirection: Axis.horizontal,