我试图使用新的show语法来减小编译的 js 代码的大小。只要我不需要任何类型的窗口事件,它就可以正常工作。
当我添加要显示的窗口时,编辑器说一切都很好。然后当我运行应用程序时,我得到:
Exception: NoSuchMethodError : method not found: 'get:window'
Receiver: Instance of 'Toolbar'
Arguments: []
Stack Trace: #0 Object._noSuchMethod (dart:core-patch:1261:3)
#1 Object.noSuchMethod (dart:core-patch:1264:25)
#2 Toolbar._init (...toolbar.dart:93:5)
#3 Toolbar.Toolbar.initialize (...toolbar.dart:47:10)
#4 main (...toolbar.dart:29:21)
有没有其他方法可以在不使用窗口变量的情况下获取窗口实例?