ascoders / react-native-image-viewer

🚀 tiny & fast lib for react native image viewer pan and zoom
MIT License
2.44k stars 577 forks source link

大图 放大很模糊 #417

Open buffge opened 3 years ago

buffge commented 3 years ago

此处也有这个问题但是没有解决 260

shenyuanqing commented 3 years ago

用FastImage试试:

import FastImage from 'react-native-fast-image';

<ImageViewer
    imageUrls={imageList}
    index={this.state.imageArray.length - 1}
    renderImage={(props)=>{
        return(
            <FastImage {...props}/>
             )
        }}
 />