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.
Update:
SystemChrome.setEnabledSystemUIOverlays
is deprecated, you can try using
SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersiveSticky);
For more info, visit the official link: https://api.flutter.dev/flutter/services/SystemChrome/setEnabledSystemUIMode.html
Old:
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.