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

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -