overlayStyle method

void overlayStyle()

Implementation

void overlayStyle() {
  if (Platform.isAndroid) {
    SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
      statusBarColor: Colors.transparent,
      statusBarIconBrightness: Brightness.dark,
      statusBarBrightness: Brightness.light,
    ));
  }
  MediaUtils.instance.screen(ScreenOrientation.portrait);
}