我正在开发React Native应用,并试图在Android上测试我的应用。在我的应用程序中有两个屏幕A和B。当加载屏幕A时,它是可以的,但当我试图通过按按钮导航到屏幕B时,Expo Go只是崩溃了,我甚至无法查看日志,甚至看不到下一个屏幕。在iOS上,这很好,但在所有Android设备上,我都无法查看错误日志。当Expo Go在Android上崩溃时,我如何看到错误日志,堆栈等?谢谢。
长话短说,Android对于糟糕的样式值是非常严格的。
对我来说,我的风格是……
const style = StyleSheet.create({
textItem: {
fontSize: 15,
lineHeight: '0em', // This was the issue, I guess its not a valid value. I changed it to 0 and it worked.
}
});
我也有一些其他的问题,我正在做的事情,如…
justifyContent: 'start' // not a correct value. Changed to 'flex-start'
iOS可以正常加载,但android会立即退出。