react-native-sortable-listview在Android上拖动后会消失
来源:5-11 Popular(最热)模块的标签排序功能实现-2
鲨鱼_辣椒
2018-07-04
react-native-sortable-listview在Android上拖动位置后会消失
写回答
1回答
-
CrazyCodeBoy
2018-07-05
检查下看是不是onRowMoved方法实现的问题,可参考:
<SortableListView data={this.state.checkedArray} order={Object.keys(this.state.checkedArray)} onRowMoved={(e) => { this.state.checkedArray.splice(e.to, 0, this.state.checkedArray.splice(e.from, 1)[0]); this.forceUpdate(); }} renderRow={row => <SortCell data={row} {...this.params}/>} />
另外,也可在查看https://github.com/deanmcpherson/react-native-sortable-listview/issues
看是否有网友遇到类似的问题。
00
相似问题