我应该 post 参数变化的问题吗
Should I post an issue for variation in parameters
StatefulBuilder 的 构建器函数的参数在网站 flutter.dev 和文档弹出 window 在 android studio 或 vs code 中。在官方网站文档中,它说第二个参数是 StateSetter 而在 IDE 中它说 void Function( void 函数 ()).
所以,我应该 post 它作为 flutter github 中的一个问题来更新文档吗?还是我应该让它成为?我的意思是有什么我在技术上不知道的东西吗?
A StateSetter
is a typedef for function signature void Function(VoidCallback fn)
, and VoidCallback
是 void Function()
的类型定义,所以基本上
StateSetter = void Function(void Function())
只是 IDE 通常会将 typedef 解析为最原始的值,这通常很方便,但有时也会造成混淆。
StatefulBuilder 的 构建器函数的参数在网站 flutter.dev 和文档弹出 window 在 android studio 或 vs code 中。在官方网站文档中,它说第二个参数是 StateSetter 而在 IDE 中它说 void Function( void 函数 ()).
所以,我应该 post 它作为 flutter github 中的一个问题来更新文档吗?还是我应该让它成为?我的意思是有什么我在技术上不知道的东西吗?
A StateSetter
is a typedef for function signature void Function(VoidCallback fn)
, and VoidCallback
是 void Function()
的类型定义,所以基本上
StateSetter = void Function(void Function())
只是 IDE 通常会将 typedef 解析为最原始的值,这通常很方便,但有时也会造成混淆。