Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我之前加过这个。myBtn.onClick.listen((_){//一些代码});
现在我想从按钮中删除事件,所以:
如何通过代码从 ButtonElement 中删除 onClick 事件?我找不到明显的方法来做到这一点。
谢谢你。
.listen() 返回一个订阅。您可以将其存储在 var 中并调用 .cancel() 。