美文网首页
使用createAnimatedComponent制定其他Rea

使用createAnimatedComponent制定其他Rea

作者: 超级大柱子 | 来源:发表于2016-05-11 02:40 被阅读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>

    相关文章

      网友评论

          本文标题:使用createAnimatedComponent制定其他Rea

          本文链接:https://www.haomeiwen.com/subject/jonyrttx.html