You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you make sure the image was loaded rather slowly or didn't render at all? I encountered this issue on Android but not iOS, it was just loaded really slow on iOS but rendered nothing on Android.
If it's only on Android, this is a known issue with RN/fresco, see #10470.
P.S. If you must render a image this large && you can control the remote source, you might consider trim them into pieces and concat them to display properly as a workaround, say every 1000px height. This will make things right for now.
@linmic Thanks for your Help.As one solution,i resize the image as thumbnail in server-side.The ListView receive the thumbnail and display the image detail in WebView.
render() {
return (
<Image
style={{width:640,height:700}}
source={{uri:'http://mpic.spriteapp.cn/x/640x400/ugc/2016/12/09/584a3d502f9ab_1.jpg'}}
/>
)
}
The image height is 27239.It load failed with Image component( iOS Simulator and Genymotion ).Is it a bug?
The text was updated successfully, but these errors were encountered: