exitFullScreen static method
void
exitFullScreen()
Exits full-screen mode.
This method restores the system UI elements such as the navigation bar and status bar.
Example:
EaseDevice.exitFullScreen();
Implementation
static void exitFullScreen() {
SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual,
overlays: SystemUiOverlay.values);
}