react-native-pullRefreshScrollView icon indicating copy to clipboard operation
react-native-pullRefreshScrollView copied to clipboard

indicatorArrowImg 设置style出错

Open lzy1010 opened this issue 8 years ago • 0 comments

if (this.props.indicatorArrowImg.url) { if (this.props.indicatorArrowImg.style) { arrowStyle = this.props.arrowStyle.style; }

这里应改为

if (this.props.indicatorArrowImg.url) { if (this.props.indicatorArrowImg.style) { arrowStyle = this.props.indicatorArrowImg.style; }

lzy1010 avatar Jun 15 '17 10:06 lzy1010