Search code examples
flutterstatusbar

Faint black at top of Flutter emulator screen


I have a problem with my screen The blackness at the top of my screen is not as obvious as in the photo. Is there a reason for this?

Screen


Solution

  • Set Status bar as transparent

    import 'package:flutter/material.dart';
    import 'package:flutter/services.dart';
    
    void main(){
      WidgetsFlutterBinding.ensureInitialized();
      SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
        statusBarColor: Colors.transparent, // transparent status bar
      ));
      runApp(MyApp());
    }