gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 12:42:44 25 4
gpt4 key购买 nike

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

enter image description here

最佳答案

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

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

关于dart - Flutter如何在抽屉导航内添加可扩展菜单项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51706739/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com