stuart.shi
Results
2
comments of
stuart.shi
@soliury 这是react native本身的组件兼容bug,可以看下这个 http://www.codeismoney.com/ReactNative/262_React-Native-ListView-onEndReached.html http://stackoverflow.com/questions/30262404/react-native-infinite-scroll
@soliury 自己改了下,效果还可以,不用改页面结构,参考上面贴的stackoverflow的帖子 修改 layouts/TopicList.js > constructor(props) { > super(props); > var ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2}); > this.state = { > isLoadingTail: false, > ds:...