Drawer

侧边栏抽屉区域,用法比较简洁,主要代码示例如下:

  1. drawer: Drawer(
  2. // 抽屉可能在高度上超出屏幕,所以使用 ListView 组件包裹起来,实现纵向滚动效果
  3. child: ListView(
  4. // 干掉顶部灰色区域
  5. padding: EdgeInsets.all(0),
  6. // 所有抽屉中的子组件都定义到这里:
  7. children: <Widget>[],
  8. ))