Flutter enable solid status bar (on Android)
As you can see, my default app status bar is transparent. I want it to be solid, and the layout to be between the status bar and the bottom nav bar. I’m using Scaffold inside MaterialApp: MaterialApp( body: Scaffold( body: … How do I achieve that? >Solution : Wrap your Scaffold‘s body with SafeArea widget.… Read More Flutter enable solid status bar (on Android)