hideStatusBar static method

Future<void> hideStatusBar()

Hide the system status bar.

Implementation

static Future<void> hideStatusBar() async {
  service.SystemChrome.setEnabledSystemUIMode(
    service.SystemUiMode.manual,
    overlays: [],
  );
}