美文网首页
RN-简单易用的提示框(react-native-easy-to

RN-简单易用的提示框(react-native-easy-to

作者: 以德扶人 | 来源:发表于2017-04-12 11:41 被阅读1250次

    导入

    import Toast, {DURATION} from 'react-native-easy-toast'

    render的时候引入

     <Toast  //提示
                        ref="toast"
                        style={{backgroundColor:'gray'}}
                        position='center'
                        positionValue={200}
                        opacity={0.6}
                        textStyle={{color:'white'}}
                    />
    

    使用

    this.refs.toast.show('消息列表获取失败',1000);

    相关文章

      网友评论

          本文标题:RN-简单易用的提示框(react-native-easy-to

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