How to make flutter app draw behind android navigation bar and make navigation bar fully transparent?

后端 未结 4 1487
心在旅途
心在旅途 2021-02-01 13:24

I would like to make my Flutter app take up the entire screen in Android while still showing both the status bar and the navigation bar, with both of them transparent, to achiev

4条回答
  •  逝去的感伤
    2021-02-01 13:56

    Have you tried the below method

    // to hide only bottom bar:
    SystemChrome.setEnabledSystemUIOverlays ([SystemUiOverlay.top]);
    
    // to hide only status bar: 
    SystemChrome.setEnabledSystemUIOverlays ([SystemUiOverlay.bottom]);
    
    // to hide both:
    SystemChrome.setEnabledSystemUIOverlays ([]);
    

提交回复
热议问题