Make flutter application fullscreen

前端 未结 7 1460
忘了有多久
忘了有多久 2020-12-25 10:05

How can I make a flutter application fullscreen. I already found out how to hide the status bar Hide Android Status Bar On Flutter App. but I can\'t seem to find how to hide

相关标签:
7条回答
  • 2020-12-25 10:46

    SystemChrome.setEnabledSystemUIOverlays([]);

    This hides the top and bottom bars but the app size remains the same. It does not expand to full screen height.

    0 讨论(0)
提交回复
热议问题