使用createAnimatedComponent制定其他Rea

2016-05-11  本文已影响1306人  超级大柱子

组件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>

上一篇下一篇

猜你喜欢

热点阅读