exitFullscreen method
void
exitFullscreen()
退出全屏
Implementation
void exitFullscreen() {
_isFullscreen = false;
SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge,
overlays: SystemUiOverlay.values);
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
notifyListeners();
}