hcHideStatusBar function

Future<void> hcHideStatusBar()

This function will hide status bar

Implementation

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