这是一个创建于 126 天前的主题,其中的信息可能已经有所发展或是发生改变。
react native 开发的 demo app ,在 expo go app 中运行正常,无论是 ios simulator 还是 iphone 真机.
但是无论是本地 xcode 打包还是通过 eas 打包后安装到打开开发者模式的真机上,部分功能不正常:如某些 css 不生效,部分网络请求无法发起,也不报错,点击图片放大屏幕卡死等,准确的说是 expo 中怎么都正常,独立打包 app 有些功能无法使用,应该如何排查问题?
css 如下
const styles = StyleSheet.create({
avatar: {
width: 48, // 12 * 4 (base size in Tailwind CSS is 4)
height: 48, // 12 * 4 (base size in Tailwind CSS is 4)
borderRadius: 24, // 50% of width/height to make it fully rounded
},
});
应该是圆形,但是打包后显示是正方形