react-native-sortable-list
react-native-sortable-list copied to clipboard
How to re-render the list?
How to re-render the data? I update the data but it is not output.
Sample code on the line 34.
setInterval(() => {
let d= this.state.data;
d.push({
image: 'https://placekitten.com/200/240',
text: 'Chloe3',
})
this.setState({
data: d
})
}, 1500)
use es6 concatenating shortcut:
setInterval(() => {
const newObject = {
image: 'https://placekitten.com/200/240',
text: 'Chloe3',
}
this.setState({
data: [...this.state.data, newObject]
})
}, 1500)