Flutter应用在释放模式下显示灰屏,但在调试模式下可以正常运行'DiagnosticsProperty< void>'的实例(Flutter app show grey screen in release mode but works fine in debug mode Instance of 'DiagnosticsProperty<void>')
Flutter异常Another exception was thrown: Instance of ‘DiagnosticsProperty<void>
绝大可能是这样的原因
Flutter Incorrect use of ParentDataWidget
提示报错,并且在release版本下无法显示界面,找到原因是使用了**Expanded**控件,
经过排查后发现是Expanded、Flexible等组件,在“Container、Padding、Stack”组件中导致的。
切记:Expanded、Flexible只在Row、Column等组件内,不在其他组件内使用。