enterFullScreen method
void
enterFullScreen()
Implementation
void enterFullScreen() {
inFullScreen = true;
SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersive);
SystemChrome.setPreferredOrientations([
DeviceOrientation.landscapeLeft,
DeviceOrientation.landscapeRight,
]);
autoHideControls();
notifyListeners();
}