react native - ListView fails to scroll -
as can see in attached gif, can't scroll through listview. view snaps original position release mouse.
i've read on documentation , seems scrolling should just work. here's implementation of render():
render: function(){ return ( <listview automaticallyadjustcontentinsets={false} initiallistsize={9} datasource={this.state.datasource} renderrow={this.rendertrack} rendersectionheader={this.rendersectionheader}/> );
your listview might quite small not appear way visible overflow. try setting flex: 1 or height: 587 on listview's style property.

Comments
Post a Comment