├── .gitignore ├── README.md ├── example.js ├── index.js ├── ios └── FastCamera │ ├── EVNCamera │ ├── CRCountdown.h │ ├── CRCountdown.m │ ├── EVNCamera.bundle │ │ ├── Root.plist │ │ └── en.lproj │ │ │ └── Root.strings │ ├── EVNCameraController.h │ └── EVNCameraController.m │ ├── FastCamera.h │ ├── FastCamera.m │ ├── FastCameraManager.h │ └── FastCameraManager.m ├── license ├── package.json ├── screenshot.jpg └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/index.js -------------------------------------------------------------------------------- /ios/FastCamera/EVNCamera/CRCountdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/ios/FastCamera/EVNCamera/CRCountdown.h -------------------------------------------------------------------------------- /ios/FastCamera/EVNCamera/CRCountdown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/ios/FastCamera/EVNCamera/CRCountdown.m -------------------------------------------------------------------------------- /ios/FastCamera/EVNCamera/EVNCamera.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/ios/FastCamera/EVNCamera/EVNCamera.bundle/Root.plist -------------------------------------------------------------------------------- /ios/FastCamera/EVNCamera/EVNCamera.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/ios/FastCamera/EVNCamera/EVNCamera.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /ios/FastCamera/EVNCamera/EVNCameraController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/ios/FastCamera/EVNCamera/EVNCameraController.h -------------------------------------------------------------------------------- /ios/FastCamera/EVNCamera/EVNCameraController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/ios/FastCamera/EVNCamera/EVNCameraController.m -------------------------------------------------------------------------------- /ios/FastCamera/FastCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/ios/FastCamera/FastCamera.h -------------------------------------------------------------------------------- /ios/FastCamera/FastCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/ios/FastCamera/FastCamera.m -------------------------------------------------------------------------------- /ios/FastCamera/FastCameraManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/ios/FastCamera/FastCameraManager.h -------------------------------------------------------------------------------- /ios/FastCamera/FastCameraManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/ios/FastCamera/FastCameraManager.m -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismnoiet/react-native-fast-camera/HEAD/yarn.lock --------------------------------------------------------------------------------