React Native
How to Display an Animated gif in React Native
By default the Gif images are not supported in android react native app. You need to set the following code to display the gif images. Open your android/app/build.gradle file add the following code: open android/app/build.gradle add the following code dependencies: { … // For animated GIF support compile ‘com.facebook.fresco:animated-base-support:0.11.0’ // Read more…