remove status bar flutter code example
Example 1: flutter remove status bar
SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom]);
Example 2: how to hide the status bar and navigation bar in flutter
import 'package:flutter/services.dart';
@override
Widget build(BuildContext context) {
SystemChrome.setEnabledSystemUIOverlays([]);
return Container(
width: MediaQuery.of(context).size.width,
height: MediaQuery.of(context).size.height,
child: Column('Some text'),
);
}
Example 3: how to cover top bar of screen in flutter app
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
));