有时,打开我的应用程序后,用户会看到未渲染的屏幕。 按钮可用,但没有打印标签和图标。
我没有在调试版本中注意到它,只是发布了。
在某些情况下,重新启动应用程序会有所帮助,有时用户必须再次安装该应用程序。
什么可能导致此问题?
断屏:
这就是它的样子
代码似乎是相当标准的,例如徽标,“ Slift”字符串是通过以下方式创建的:
@override
Widget build(BuildContext context) {
return BorderedText(
strokeWidth: strokeWidth,
strokeColor: ThemeColors.getColor3(),
child: Text(
'SLift',
style: GoogleFonts.baloo(
textStyle:
TextStyle(decoration: TextDecoration.none, fontSize: fontSize),
),
));
}
答案 0 :(得分:0)
您在代码中使用MediaQuery
吗?因为有时在发布和调试模式下它的工作方式有所不同。