androidflutterdartfullscreen

Make flutter application fullscreen | How to enable fullscreen in flutter?


How can I make a flutter application fullscreen. I already found out how to hide the status bar Hide Android Status Bar On Flutter App. but I can't seem to find how to hide the android navigation bar.


Solution

  • It's exactly like for Android status bar.

    Doing SystemChrome.setEnabledSystemUIOverlays([]) hides both the status bar and the navigation bar.

    p/s : use this SystemChrome.setEnabledSystemUIOverlays(SystemUiOverlay.values); to disable full screen mode.