showStatusBar static method

Future<void> showStatusBar()

Show the system status bar.

Implementation

static Future<void> showStatusBar() async {
  service.SystemChrome.setEnabledSystemUIMode(
    service.SystemUiMode.manual,
    overlays: service.SystemUiOverlay.values,
  );
}