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}/>   ); 

enter image description here

your listview might quite small not appear way visible overflow. try setting flex: 1 or height: 587 on listview's style property.


Comments

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -