Search code examples
flutterandroid-fullscreenflutter-layoutandroid-navigation-bar

Flutter fullscreen app. Getting rid of the blank white space at the bottom of the app on android


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.

image


Solution

  • You can set resizeToAvoidBottomPadding to false on Scaffold

    Scaffold(
      resizeToAvoidBottomPadding: false,
      appBar: new AppBar(),
    );