1. 程式人生 > 實用技巧 >flutter 頂部狀態列 底部欄 顯示和隱藏

flutter 頂部狀態列 底部欄 顯示和隱藏

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