728x90
npm i --save react-native-fast-image
cd ios && pod install && cd ..
Image 라이브러리를 설치한다.
ios는 그냥 해도 잘 렌더링되지만
android는 간단한 세팅을 해줘야한다.
/android/app/bulild.gradle
...
implementation 'com.facebook.fresco:fresco:2.0.0'
implementation 'com.facebook.fresco:animated-gif:2.5.0'
...
앱 실행(재실행)
import FastImage from 'react-native-fast-image';
...
<FastImage
style={{ width: 100, height: 100 }}
source={{ uri: 'https://mygifimage.com/test.gif' }}
/>
...
728x90
반응형
'개발, 코딩 > App - React Native' 카테고리의 다른 글
react-native-reanimated 에러 모음 (0) | 2021.11.24 |
---|---|
ReactNative, 아이폰에서 하단에 버튼 배치 (with KeyboardAvoidingView) (0) | 2021.11.22 |
react-navigation, white flickering when transitioning to the new screen (0) | 2021.11.17 |
[RNFB] Android push notification not working on quit stats (0) | 2021.11.17 |
Play Console, 내부테스트 (0) | 2021.11.16 |