npm install react-native-draggable-flatlistoryarn add react-native-draggable-flatlistimport DraggableFlatList from 'react-native-draggable-flatlist'
Props:
data(Array) Items to be rendered.horizontal(boolean) Orientation of list.renderItem(Function)({ item, index, move, moveEnd, isActive }) => <Component />. Callmovewhen the row should become active (in anonPress,onLongPress, etc). CallmoveEndwhen the gesture is complete (inonPressOut).keyExtractor(Function)(item, index) => stringcontentContainerStyle(Object)scrollPercent(Number) Sets where scrolling begins. A value of5will scroll up if the finger is in the top 5% of the FlatList container and scroll down in the bottom 5%.onMoveEnd(Function)({ data, to, from, row }) => voidReturns updated ordering ofdataonMoveBegin(Function)(index) => voidCalled when row becomes active.- All props are spread onto underlying FlatList
import React, { Component } from 'react'
import { View, TouchableOpacity, Text } from 'react-native'
import DraggableFlatList from 'react-native-draggable-flatlist'
class Example extends Component {
state = {
data: [...Array(20)].map((d, index) => ({
key: `item-${index}`,
label: index,
backgroundColor: `rgb(${Math.floor(Math.random() * 255)}, ${index * 5}, ${132})`,
}))
}
renderItem = ({ item, index, move, moveEnd, isActive }) => {
return (
<TouchableOpacity
style={{
height: 100,
backgroundColor: isActive ? 'blue' : item.backgroundColor,
alignItems: 'center',
justifyContent: 'center'
}}
onLongPress={move}
onPressOut={moveEnd}
>
<Text style={{
fontWeight: 'bold',
color: 'white',
fontSize: 32,
}}>{item.label}</Text>
</TouchableOpacity>
)
}
render() {
return (
<View style={{ flex: 1 }}>
<DraggableFlatList
data={this.state.data}
renderItem={this.renderItem}
keyExtractor={(item, index) => `draggable-item-${item.key}`}
scrollPercent={5}
onMoveEnd={({ data }) => this.setState({ data })}
/>
</View>
)
}
}
export default Example