如何在 Dart 中监听浏览器历史事件

how to listen to browser history events in Dart

我无法使此答案中提供的代码起作用:(

1
window.on.popState.add((_) => showPage());

Breaking on exception: Class 'Events' has no instance getter 'popState'.

任何帮助将不胜感激!


你必须使用 :

1
window.onPopState.listen((_) => showPage());