Search
⚠️

Flutter Wrong UI

Problem
When running Flutter, there are times when UI does not seem right. This is how it looks like…
`
Solution 1
This error occurs when users forget about the Scaffold widget. Covering the entire screen (widgets) with the Scaffold will fix this problem.
// Code causing an error return Center( child: Text("Hello World!"), ); // Solution return Scaffold( body: Center( child: Text("Hello World!"), ), );
Dart
복사