├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ ├── dragAndDropContext.test.tsx ├── draggable.test.tsx └── droppable.test.tsx ├── demo.gif ├── example ├── .watchmanconfig ├── App.js ├── app.json ├── assets │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package.json ├── rn-cli.config.js └── yarn.lock ├── gulpfile.js ├── package.json ├── src ├── dragAndDropContext.tsx ├── draggable.tsx ├── droppable.tsx ├── index.ts └── types.tsx ├── tsconfig.jest.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/dragAndDropContext.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/__tests__/dragAndDropContext.test.tsx -------------------------------------------------------------------------------- /__tests__/draggable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/__tests__/draggable.test.tsx -------------------------------------------------------------------------------- /__tests__/droppable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/__tests__/droppable.test.tsx -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/demo.gif -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/example/App.js -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/example/package.json -------------------------------------------------------------------------------- /example/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/example/rn-cli.config.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/package.json -------------------------------------------------------------------------------- /src/dragAndDropContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/src/dragAndDropContext.tsx -------------------------------------------------------------------------------- /src/draggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/src/draggable.tsx -------------------------------------------------------------------------------- /src/droppable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/src/droppable.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dragAndDropContext'; 2 | -------------------------------------------------------------------------------- /src/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/src/types.tsx -------------------------------------------------------------------------------- /tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/tsconfig.jest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohebifar/react-native-easy-dnd/HEAD/yarn.lock --------------------------------------------------------------------------------