天天看點

flutter No Material widget found的解決辦法

flutter一直報IconButton的錯誤:

​​

​Another exception was thrown: No Material widget found.​

  • AppBar
  • BottomAppBar
  • FloatingActionButton
  • Drawer
  • SnackBar
  • BottomSheet
  • BottomNavigationBar
  • IconButton
  • ListTile

    等,需要時,要用Scaffold包裹起來,如:

Scaffold(
      body: IconButton(
              // 全屏/橫屏按鈕
              padding: EdgeInsets.zero,
              iconSize: 26,
              icon: Icon(
                // 根據目前螢幕方向切換圖示
                _isFullScreen ? Icons.fullscreen_exit : Icons.fullscreen,
                color: Colors.white,
              ),
      }