react native - RCTRefreshControl may only be managed by a UITablewViewController -
i'm getting following ugly error while trying implement refreshcontrol on scrollview in react native application:
here's i'm rendering:
return ( <view style={styles.container}> <scrollview refreshcontrol={ <refreshcontrol refreshing={this.state.refreshing} onrefresh={this._onrefresh}></refreshcontrol>} style={styles.scrollview}> {renderfeeditems()} </scrollview> </view> );
any ideas?
"react-native": "^0.21.0"
fixed upgrade react-native 0.29.0
Comments
Post a Comment