您的当前位置:首页正文

使用createAnimatedComponent制定其他Rea

来源:华拓网

组件B:
class Mo extends Component { constructor(props) { super(props); } render() { return ( <View style={{width:this.props.w, height:this.props.h, backgroundColor:'#ee5500'}}></View> ); } }
在组件A,使用createAnimatedComponent创建可以使用Animated的组件:
this.B = Animated.createAnimatedComponent(B);

使用render函数:

<View style={{justifyContent:'center', alignItems:'center', flex:1}}> <this.B w={this.state.mw} h={this.state.mh}></this.B> </View>