参考官方Flutter tutorial,context
在
_pushSaved()
函数?
class RandomWordsState extends State<RandomWords> {
...
void _pushSaved() {
Navigator.of(context).push(
...
);
}
}
答案 0 :(得分:0)
引用Flutter文档:https://api.flutter.dev/flutter/widgets/State-class.html
State类具有context
属性,它是BuildContext
的实例
因此,您可以在扩展State类的RandomWordsState类中引用context