I need a layout without an appbar, so the most obvious approach is to just leave out the appbar tag on the Scaffold but if I do that the content goes u
appbar
Scaffold
You can get the OS padding with MediaQuery.
MediaQuery
You'd have to replace your
margin: const EdgeInsets.only(top: 30.0),
by
margin: MediaQuery.of(context).padding,
Another solution is to wrap your content inside a SafeArea. Which basically does the same thing.
SafeArea