flutter 頂部狀態列 底部欄 顯示和隱藏
阿新 • • 發佈:2020-11-24
RaisedButton( child: Text('頂部 底部 狀態列都不顯示'), onPressed: () { SystemChrome.setEnabledSystemUIOverlays([]); }, ), RaisedButton( child: Text('只顯示頂部狀態列'), onPressed: () { SystemChrome.setEnabledSystemUIOverlays( [SystemUiOverlay.top]); }, ), RaisedButton( child: Text('只顯示底部狀態列'), onPressed: () { SystemChrome.setEnabledSystemUIOverlays( [SystemUiOverlay.bottom]); }, ), RaisedButton( child: Text('頂部 底部 都顯示狀態列'), onPressed: () { SystemChrome.setEnabledSystemUIOverlays( SystemUiOverlay.values); }, ),