RN的Image組件在安卓系統裏奔潰的解決辦法

將Image組件換成FastImage組件

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

<FastImage
    style={S.IMAGE}
    source={{
      uri:
        item.uri ||
        `${item.publicUrl}?imageMogr2/thumbnail/300`,
    }}
    resizeMode={FastImage.resizeMode.cover}>
</FastImage>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章