我正在尝试通过单击列表中的项目来转到另一页,但是他说上下文是未定义的。 我做错了什么?有什么建议吗?谢谢您的帮助
我在代码中注释了出现第一个未定义上下文的地方。
class ListaServidores extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.black,
centerTitle: true,
title: Text("Lista de servidores"),
),
body: ContactList(kContacts)
);
}
}
class ContactList extends StatelessWidget {
final List<Contact> _contacts;
ContactList(this._contacts);
@override
Widget build(BuildContext context) {
return ListView(
padding: EdgeInsets.symmetric(vertical: 8.0),
children: _buildContactList()
);
}
List<_ContactListItem> _buildContactList() {
return _contacts.map((contact) => _ContactListItem(contact))
.toList();
}
}
class _ContactListItem extends ListTile {
_ContactListItem(Contact contact) :
super(
onTap:(){//here context undefined
Navigator.push(context, MaterialPageRoute(builder: (context)=>
NovoSigilo(servidor: contact.oservidor)));
},
title : Text(
contact.oservidor,
style: TextStyle(
fontSize: 18.0, fontWeight: FontWeight.bold),
),
subtitle: Text(contact.texto, overflow: TextOverflow.ellipsis),
leading: CircleAvatar(
backgroundColor: Colors.white,
child: Image.asset(contact.img),
)
);
}
答案 0 :(得分:1)
请勿扩展窗口小部件。而是使用组合。
coroutine.getResults()
这将解决您在此过程中遇到的问题。