为什么我的Animated API组件不会在React Native中显示?

时间:2018-08-06 16:22:10

标签: react-native react-animated

我正在尝试在Animated Api中使用插值函数,当我使用Image组件时,此方法有效,但是当我使用Animated.Image时,则什么也没有出现,或者如果我用一个值硬编码旋转,则它也不起作用或抛出一个错误。

import React from 'react';
import { StyleSheet, Text, View, Animated, Easing, Image} from 'react-native';


export default class App extends React.Component {
  state = {spinValue : new Animated.Value(0)}

  componentDidMount(){
    Animated.timing(
      this.state.spinValue,
      {
        toValue: 1,
        duration: 3000,
        easing: Easing.linear
      }
    ).start()
  }

  spin = this.state.spinValue.interpolate({
    inputRange: [0, 1], 
    outputRange: ['0deg', '360deg']
  })

  render() {
    return (
      <View style={styles.container}>
        <Animated.Image
          style={{transform: [{rotate: "90deg"}] }}
          source={{uri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Square_-_black_simple.svg/1200px-Square_-_black_simple.svg.png'}} />
        <Text>Testing</Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',
  },
});

1 个答案:

答案 0 :(得分:1)

来自React-native文档:

  

请注意,对于网络和数据图像,您将需要手动指定图像的尺寸!

您需要在样式道具中添加宽度和高度