Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

remove status bar in flutter

import 'package:flutter/services.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  SystemChrome.setEnabledSystemUIOverlays([
    SystemUiOverlay.bottom, //This line is used for showing the bottom bar
  ]);
  runApp(myApp());
}
 
PREVIOUS NEXT
Tagged: #remove #status #bar #flutter
ADD COMMENT
Topic
Name
2+4 =