How to hide the Android Status Bar in a Flutter App?
i: To hide status bar:
SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom]);
ii: Use SafeArea Widget it will make sure that your app does not take status bar area.
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Container(
child: Text('Do not take status bar area on screen!'),
),
);
}