我正在尝试调试一个问题,并且在this中看到了回答建议,将debugPrintScheduleBuildForStacks
设置为true。
但是我设法找到了docs,但是在互联网上找不到我可以实际使用它们的指南。
我尝试将其设置为全局变量,小部件内的变量,并直接在源文件(debug.dart)中对其进行更改,但是,我无法像在上面提到的答案。
有人可以解释或指向我一些使用它的文档吗?
答案 0 :(得分:0)
main.dart中的build()内部
我已经使用了debugPrintScheduleFrameStacks。
您可以将其替换为debugPrintScheduleBuildForStacks。
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
debugPrintScheduleFrameStacks = true;
doc:https://pub.dev/documentation/flutter_for_web/latest/widgets/debugPrintScheduleBuildForStacks.html