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:

refreshcontrol error

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

Popular posts from this blog

AbotX : How do you create a parallel crawler that stays on and can be added to at run time from new requests -

testing - Detect whether test has failed within fixture -

android - Create single AAR file from multiple modules using Gradle -