I used SystemChrome.setEnabledSystemUIOverlays([]);
to make my flutter app full screen.
The status bar is gone for good, but I get this white space at the bottom where the nav bar used to be.
You can set resizeToAvoidBottomPadding
to false
on Scaffold
Scaffold(
resizeToAvoidBottomPadding: false,
appBar: new AppBar(),
);