skip to Main Content

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"

app screenshot

code

I tried some tutorial on youtube, but then the result is blank

2

Answers


  1. Bottom Overflowed by 143 pixels

    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 a SingleChildScrollView widget for it to become scrollable and the overflowing content should be draggable into view.

    Login or Signup to reply.
  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search