Im trying to build a sushi app, but when i rotate my phone, theres black and yellow line, it says "Bottom Overflowed by 143 pixels"
I tried some tutorial on youtube, but then the result is blank
Im trying to build a sushi app, but when i rotate my phone, theres black and yellow line, it says "Bottom Overflowed by 143 pixels"
I tried some tutorial on youtube, but then the result is blank
2
Answers
Means there’s content below the screen with the height size of 143 pixels.
You need a strategy for landscape mobile view. Either make a different design that fits the whole screen or wrap your
Column
with aSingleChildScrollView
widget for it to become scrollable and the overflowing content should be draggable into view.If you use SingleChildScrollView then it solve your problem but if Column/Row widget contain any widget which has infinite height then your screen show a blank screen. So please check is there any Expanded/Flexible widget in your column widget.
Better paste your full code so that I can identify the problem