React-Native将样式传递给props.children

时间:2018-01-31 08:20:04

标签: react-native react-props

我正在尝试将样式传递给孩子,我的代码是:

render() {
    const RotateData = this.RotateValueHolder.interpolate({
        inputRange: [0, 1],
        outputRange: ['0deg', '360deg']
    });

    Object.assign(this.props.children.props.style,{'transform': [{'rotate': RotateData}] });

    return (
        <View style={{flex:1}}>
            {this.props.children}
        </View>
    );
}

我收到此错误:

Invariant Violation: Transform with key of "rotate" must be a string:
{"rotate":"0deg"}

1 个答案:

答案 0 :(得分:0)

旋转只能由动画组件使用,因此您需要将样式应用于Animated.View或任何Animated元素。所以尝试将它与动画组件一起使用。