This happens if they entry point of your app is missing Scaffold. Your flutter app must have at least one Scaffold. Without it flutter, doesn’t know where to start the drawing from.
Here we are returning Container(). But this is our homepage or the entry point of our app.
And it’s missing a scaffold.
After adding Scaffold the error is gone