React Native Animation调整大小

时间:2017-12-11 09:24:50

标签: animation react-native lottie

React Native Animation无法扩展。动画更大。我的代码:

import { DangerZone } from 'expo';
const { Lottie } = DangerZone;

样式:

animationContainer: {
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',z
},

查看:

<Lottie
        ref={(animation) => {
          this.animation = animation;
        }}
        resizeMode="contain"
        loop={Boolean(true)}
        style={{
          width: 300,
          height: 30,
          backgroundColor: '#ccc',
        }}
        source={this.state.animation}
      />

App screenshot

我不知道为什么这不起作用。请帮帮我

0 个答案:

没有答案