我的ListView出现问题,本质上我想做的是一个可交互的ListTile。我希望用户单击磁贴,然后通过导航器将其移至另一页。
类似的事情适用于按钮(onPressed),但不适用于ListTiles:
Navigator.of(context).pushNamed(HomePage.tag);
我尝试过使用OnTap,但我不知道使用该方法的方法。
final list = ListView(
children: <Widget>[
ListTile(
leading: Icon(Icons.account_circle),
title: Text('Barrack Obama'),
),
ListTile(
leading: Icon(Icons.account_circle),
title: Text('Neil Armstrong'),
onTap: ,
),
ListTile(
leading: Icon(Icons.account_circle),
title: Text('Ivan Ivanovich Ivanov'),
),
],
);
列表本身非常简单并且是一个测试,当用户通过导航器单击图块时,我正在尝试对其进行重定向。
答案 0 :(得分:1)
这应该有效
ListTile(
leading: Icon(Icons.account_circle),
title: Text('Neil Armstrong'),
onTap: (){
Navigator.of(context).pushNamed("your_route_name");
} ,
),