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}
/>
我不知道为什么这不起作用。请帮帮我