import React, { useState } from "react"; import { Text, View, StyleSheet, TouchableOpacity } from "react-native"; import DraggableFlatList, { ScaleDecorator, NestableScrollContainer, NestableDraggableFlatList, } from "react-native-draggable-flatlist"; const NUM_ITEMS = 10; function getColor(i) { const multiplier = 255 / (NUM_ITEMS - 1); const colorVal = i * multiplier; return `rgb(${colorVal}, ${Math.abs(128 - colorVal)}, ${255 - colorVal})`; } const initialData = [...Array(NUM_ITEMS)].map((d, index) => { const backgroundColor = getColor(index); return { key: `item-${index}`, label: String(index) + "", height: 100, width: 60 + Math.random() * 40, backgroundColor, }; }); const initialData2 = [...Array(NUM_ITEMS)].map((d, index) => { const backgroundColor = getColor(index); return { key: `item-${index}`, label: String(index) + "", height: 100, width: 60 + Math.random() * 40, backgroundColor, }; }); export default function App() { const [data, setData] = useState(initialData); const [data2, setData2] = useState(initialData2); const renderItem = ({ item, drag, isActive }) => { return ( {item.label} ); }; return ( setData(data)} keyExtractor={(item) => item.key} renderItem={renderItem} /> setData2(data)} keyExtractor={(item) => item.key} renderItem={renderItem} /> ); } const styles = StyleSheet.create({ rowItem: { height: 100, width: 100, alignItems: "center", justifyContent: "center", }, text: { color: "white", fontSize: 24, fontWeight: "bold", textAlign: "center", }, });