dependencies {
// The version of react-native is set by the React Native Gradle Plugin
implementation("com.facebook.react:react-android")
// For animated GIF support
implementation 'com.facebook.fresco:animated-gif:3.1.3'
if (hermesEnabled.toBoolean()) {
implementation("com.facebook.react:hermes-android")
} else {
implementation jscFlavor
}}
Но это отображается только в виде изображения, без анимации. Как показать анимацию GIF.
Я пытаюсь отобразить GIF-файл в своем приложении React Native. [img]https://i.sstatic.net /pBIltPqf.png[/img]
Я также добавляю анимированный GIF в android>app>build.gradle. [code]dependencies { // The version of react-native is set by the React Native Gradle Plugin implementation("com.facebook.react:react-android") // For animated GIF support implementation 'com.facebook.fresco:animated-gif:3.1.3'
if (hermesEnabled.toBoolean()) { implementation("com.facebook.react:hermes-android") } else { implementation jscFlavor }} [/code] Но это отображается только в виде изображения, без анимации. Как показать анимацию GIF.