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
marc_s
760k186 gold badges1.4k silver badges1.5k bronze badges
-
Does this answer your question? How to scroll page in flutterMariano Zorrilla– Mariano Zorrilla2021年10月09日 13:07:00 +00:00Commented Oct 9, 2021 at 13:07
1 Answer 1
Wrape your text with SingleChildScrollView and then add this line
scrollDirection: Axis.horizontal,
answered Oct 9, 2021 at 10:25
Nilrajsinh Vaghela
1635 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
lang-dart