菜单滑块中的Flutter子项目

问题描述

有什么方法可以为菜单滑块创建子项?

https://flutter.dev/docs/cookbook/design/drawer

在此示例中,我们具有Item1和Item2。如何为项目1制作子项目?更清楚地说,当我单击Item1时,我想展开SubItem1,SubItem2,而当我单击Item1时,要隐藏子项。

解决方法

您可以在ListView中尝试ExpansionTile。例如-

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

您可以查看扩展面板列表-Link

如果此答案对您有帮助,请不要忘记投票。