├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .husky ├── .npmignore ├── commit-msg └── pre-commit ├── .yarnrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Video-Demo.gif ├── babel.config.js ├── componentparts.png ├── customhandleexample_001.png ├── defaulthandle.png ├── dragConfig-translatex.png ├── example └── readme.md ├── markmccoid-react-native-drag-and-order-0.1.x.tgz ├── package.json ├── scripts └── bootstrap.js ├── src ├── DragAndSort │ ├── DefaultDragIndicator.tsx │ ├── DragDropEntry.tsx │ ├── DragItem.tsx │ ├── DragSortContext.tsx │ ├── DragTest.tsx │ ├── Handle.tsx │ ├── MoveableItem.tsx │ └── helperFunctions.ts ├── __tests__ │ └── index.test.tsx └── index.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.npmignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint -E HUSKY_GIT_PARAMS 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/.yarnrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/README.md -------------------------------------------------------------------------------- /Video-Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/Video-Demo.gif -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/babel.config.js -------------------------------------------------------------------------------- /componentparts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/componentparts.png -------------------------------------------------------------------------------- /customhandleexample_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/customhandleexample_001.png -------------------------------------------------------------------------------- /defaulthandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/defaulthandle.png -------------------------------------------------------------------------------- /dragConfig-translatex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/dragConfig-translatex.png -------------------------------------------------------------------------------- /example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/example/readme.md -------------------------------------------------------------------------------- /markmccoid-react-native-drag-and-order-0.1.x.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/markmccoid-react-native-drag-and-order-0.1.x.tgz -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/package.json -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/DragAndSort/DefaultDragIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/src/DragAndSort/DefaultDragIndicator.tsx -------------------------------------------------------------------------------- /src/DragAndSort/DragDropEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/src/DragAndSort/DragDropEntry.tsx -------------------------------------------------------------------------------- /src/DragAndSort/DragItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/src/DragAndSort/DragItem.tsx -------------------------------------------------------------------------------- /src/DragAndSort/DragSortContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/src/DragAndSort/DragSortContext.tsx -------------------------------------------------------------------------------- /src/DragAndSort/DragTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/src/DragAndSort/DragTest.tsx -------------------------------------------------------------------------------- /src/DragAndSort/Handle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/src/DragAndSort/Handle.tsx -------------------------------------------------------------------------------- /src/DragAndSort/MoveableItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/src/DragAndSort/MoveableItem.tsx -------------------------------------------------------------------------------- /src/DragAndSort/helperFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/src/DragAndSort/helperFunctions.ts -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmccoid/react-native-drag-and-order/HEAD/yarn.lock --------------------------------------------------------------------------------