├── .babelrc ├── .buckconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src ├── Cropper │ ├── Cropper.page.tsx │ ├── Cropper.style.ts │ └── Cropper.tsx ├── Main.tsx ├── common │ ├── DefaultFooter.tsx │ └── index.ts ├── constants │ └── index.ts └── utils │ ├── cropper.ts │ └── index.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/package.json -------------------------------------------------------------------------------- /src/Cropper/Cropper.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/src/Cropper/Cropper.page.tsx -------------------------------------------------------------------------------- /src/Cropper/Cropper.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/src/Cropper/Cropper.style.ts -------------------------------------------------------------------------------- /src/Cropper/Cropper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/src/Cropper/Cropper.tsx -------------------------------------------------------------------------------- /src/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/src/Main.tsx -------------------------------------------------------------------------------- /src/common/DefaultFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/src/common/DefaultFooter.tsx -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DefaultFooter'; 2 | -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/utils/cropper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/src/utils/cropper.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cropper'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggunti/react-native-amazing-cropper/HEAD/yarn.lock --------------------------------------------------------------------------------