Flutter如何在导航抽屉中添加可扩展菜单项?

时间:2018-08-06 11:37:03

标签: dart flutter flutter-layout

我想将可扩展菜单添加到drawer个抖动项目中。我如何才能在颤振中实现此功能。如果有任何示例或博客,请直接指出正确的方向。

enter image description here

1 个答案:

答案 0 :(得分:4)

您必须将抽屉子属性传递给ListView,然后在该ListView中使用ExpansionTile。看起来像这样:

Drawer(
  child: ListView(
    children: <Widget>[
      ExpansionTile(
        title: Text("Expansion Title"),
        children: <Widget>[Text("children 1"), Text("children 2")],
      )
    ],
  ),
);