flutter remove status bar
SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom]);
flutter remove status bar
SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom]);
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'),
);
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us