owner._debugCurrentBuildTarget == this , is not true

梦想与她 提交于 2020-08-08 06:31:40

问题


[on web] tried to fit some widgets inside a FittedBox like this :

 FittedBox(
   fit: BoxFit.scaleDown,
   child: AnimatedContainer(...)
 )

but screen and console show only this message :

there's nothing else in the console

what's the next step here ? :D


回答1:


More Info was provided by the framework after a little messing around with the code , like extra children , random sizes to parents . . .

Error >> ... object was given an infinite size during layout

ultimately some like this worked :

FittedBox(
 fit: BoxFit.scaleDown,
 child: Container(
   height: MediaQuery.of(context).size.height * .65,
   child: AnimatedContainer(...)
)


来源:https://stackoverflow.com/questions/59130940/owner-debugcurrentbuildtarget-this-is-not-true

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!