showStatusBar function

Future<void> showStatusBar()

This function will show status bar

Implementation

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