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.
我在将未来方法中的符号分配给 onpressed 时遇到问题:参数类型“Future”不能分配给参数类型“void Function()”。
你必须像这样分配它:
onpressed: () => FunctionName()
因为处理程序需要一个没有返回的函数。所以我们只是在一个匿名的 void 函数中调用你的函数。