我使用ListTile
创建列表中的每个项目。每个项目都是从数据阵列动态创建的。 ListTile
提供了onTap
,但对我来说不够,因为我需要找到通过获取密钥或索引来点击哪个项目。
ListTile:
new ListTile(
//leading: const Icon(Icons.flight_land),
title: const Text('Trix\'s airplane'),
subtitle: const Text('The airplane is only in Act II.'),
enabled: true,
onTap: () { //TODO: get the identifier for this item },
trailing: new Container(
child: new Row(
children: [
new Text("70%"),
const Icon(Icons.flight_land)
]
)
),
)
答案 0 :(得分:7)
您希望在ListTile
内构建ListView
的列表,并使用List.generate
构造函数来获取children
的索引,这是一个简单的示例:
import "package:flutter/material.dart";
class ListTest extends StatefulWidget {
@override
_ListTestState createState() => new _ListTestState();
}
class _ListTestState extends State<ListTest> {
final GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey<ScaffoldState>();
int _id;
@override
Widget build(BuildContext context) {
return new Scaffold(
key: _scaffoldKey,
appBar: new AppBar(title: new Text("List"),),
body: new ListView(
children: new List.generate(10, (int index){
return new ListTile(title: new Text("item#$index"),
onTap:(){
setState((){
_id = index; //if you want to assign the index somewhere to check
});
_scaffoldKey.currentState.showSnackBar(new SnackBar(content: new Text("You clicked item number $_id")));
},
);
})
),
);
}
}
请注意,List.generate
适用于小型列表,如果您正在阅读可扩展列表(例如:用户列表),则需要使用ListView.builder
而不是ListView
它有一个builder
参数,允许您按索引遍历列表。
new ListView.builder(itemBuilder: (BuildContext context, int index) {
//return your list
},
答案 1 :(得分:0)
您可以创建带有捕获项目信息的闭包的ListTile实例。在此示例中,使用ListTile的每个Text的标签调用_tappedFolder函数。
List<ListTile> _buildFolderTiles() {
var list = List<ListTile>();
for (var each in ['A:','B:','C:','D:']) {
list.add(ListTile(
title: Text(each),
onTap: (){ _tappedFolder(each); }
));
}
return list;
}
void _tappedFolder(String which) {
print("tapped ${which}");
}