├── .babelrc ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── README.md ├── README_CN.md ├── example.gif ├── example2.gif ├── package.json ├── src ├── block.tsx ├── draggable-grid.tsx ├── index.ts └── utils.ts ├── test └── utils.test.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/README_CN.md -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/example.gif -------------------------------------------------------------------------------- /example2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/example2.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/package.json -------------------------------------------------------------------------------- /src/block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/src/block.tsx -------------------------------------------------------------------------------- /src/draggable-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/src/draggable-grid.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/test/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3rdwave/react-native-draggable-grid/HEAD/yarn.lock --------------------------------------------------------------------------------