Search code examples
androiddartflutterflutter-layout

How to hide android's bottom navigation bar in flutter


I'm really new in flutter and also in Android dev, but is it possible to hide the bottom navigation bar (see which item do i mean below) programmatically?

enter image description here


Solution

  • Try this: SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.top]);

    Document

    Update 2024

     SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: [
                          SystemUiOverlay.top,
                          SystemUiOverlay.bottom,
                        ]);