在 Flutter 列表视图中,有没有办法知道用户正在点击的列表项的编号?
Posted
技术标签:
【中文标题】在 Flutter 列表视图中,有没有办法知道用户正在点击的列表项的编号?【英文标题】:In the Flutter list view , is there a way to know the number of the list item that the user is tapping? 【发布时间】:2022-01-23 01:51:26 【问题描述】:ListTile( 标题:文本(snapshot.data[index].quection) );
【问题讨论】:
你为什么不使用 ListView.builder ? 是的,我正在使用 listView Builder 检查我的答案,如果适合你,请标记为答案。 它的作品。谢谢你 很高兴为您提供帮助... 【参考方案1】:您只需要使用 ListView.builder 的index
,如下所示
ListView.builder(
itemBuilder: (context, index) => ElevatedButton(
onPressed: ()
print(index);
,
child: Text("$index")))
【讨论】:
以上是关于在 Flutter 列表视图中,有没有办法知道用户正在点击的列表项的编号?的主要内容,如果未能解决你的问题,请参考以下文章
有没有办法在 Flutter 的 TabBar 中创建下拉列表?
当我向列表视图添加元素时,如何在 Flutter 中更新列表视图?