在Flutter列表视图中,有没有办法知道用户点击的列表项的数量?
In the Flutter list view , is there a way to know the number of the list item that the user is tapping?
在Flutter列表视图中,有没有办法知道用户点击的列表项的数量?
ListTile(
标题:文本(snapshot.data[索引].问题)
);
您只需像下面那样使用 ListView.builder 的 index
ListView.builder(
itemBuilder: (context, index) => ElevatedButton(
onPressed: () {
print(index);
},
child: Text("$index")))
在Flutter列表视图中,有没有办法知道用户点击的列表项的数量?
ListTile( 标题:文本(snapshot.data[索引].问题) );
您只需像下面那样使用 ListView.builder 的 index
ListView.builder(
itemBuilder: (context, index) => ElevatedButton(
onPressed: () {
print(index);
},
child: Text("$index")))