<Image
source={{
uri: 'correct-url-of-my-image',
headers: {
Accept: 'image/*'
}
}}
style={{ width: 400, height: 140 }}
contentFit="contain"
className="z-10"
onLoadStart={() => {
console.log('Image loading started');
}}
onError={e => {
console.log('Image loading failed', e);
}}
onLoadEnd={() => {
console.log('Image loading ended');
}}
/>
一切正确,但图像不可见。我还检查了 URL,它工作正常,我还尝试将图像保留在资产目录中并尝试访问它,但仍然无法工作。
图像格式为.svg,但不起作用。然后我尝试从figma导出.png格式,然后我尝试了,效果很好,之后图像就可见了。