Lott ie Анимация в реакции-родной выставке - PullRequest
0 голосов
/ 23 февраля 2020

Я впервые пытаюсь реализовать анимацию lott ie с файлом json в моем собственном проекте expo, но ничего не появляется:

Я также добавил "implementation": "com.airbnb.android:lottie:$lottieVersion", в зависимости для сборщика классов но это не сработало.

Вот мой код рендеринга:

    if(this.props.navigation.getParam('city')){
        this.getWeather()
    }
  return (
    <View style={styles.container}>
      <Header title="Current Weather" />
      <Card style={{margin: 20, backgroundColor:"#30336b" }} >
                <View style={{padding:20, alignItems:'center'}} >
            <Title style={styles.text1}>{this.state.info.name}</Title>
            <Image  style={{width:120, height:120}}
                source={{uri:'http://openweathermap.org/img/w/'+this.state.info.icon+".png"}}
             />
            <Title style={styles.text2} >TEMPERATURE : {this.state.info.temp} °C</Title>
            <Title style={styles.text2}>DESCRIPTION : {this.state.info.desc}</Title>
            <Title style={styles.text2}>HUMIDITY : {this.state.info.humidity}</Title>
        </View>
        <LottieView
        source={require('../lottie/16406-colorfull-loader(1).json')}
        autoPlay
        loop
      />
      </Card>

    </View>
  );
}```


...