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); }, ),
