DrawerDrawer侧边栏抽屉区域,用法比较简洁,主要代码示例如下: drawer: Drawer( // 抽屉可能在高度上超出屏幕,所以使用 ListView 组件包裹起来,实现纵向滚动效果 child: ListView( // 干掉顶部灰色区域 padding: EdgeInsets.all(0), // 所有抽屉中的子组件都定义到这里: children: <Widget>[], ))