Searched refs:CameraManager (Results 1 – 13 of 13) sorted by relevance
| /expo/packages/expo-camera/build/ |
| H A D | Camera.js | 5 import CameraManager from './ExponentCameraManager'; 49 if (!CameraManager.isAvailableAsync) { 77 Type: CameraManager.Type, 78 FlashMode: CameraManager.FlashMode, 79 AutoFocus: CameraManager.AutoFocus, 83 VideoCodec: CameraManager.VideoCodec, 92 type: CameraManager.Type.back, 237 if (!CameraManager.record) { 247 if (!CameraManager.stopRecording) { 256 if (!CameraManager.pausePreview) { [all …]
|
| H A D | ExponentCameraManager.d.ts | 1 declare const CameraManager: Record<string, any>; constant 2 export default CameraManager;
|
| H A D | ExponentCameraManager.js | 2 const CameraManager = requireNativeModule('ExponentCamera'); constant 3 export default CameraManager;
|
| H A D | ExponentCameraManager.js.map | 1 …odules-core';\n\nconst CameraManager: Record<string, any> = requireNativeModule('ExponentCamera');…
|
| H A D | Camera.js.map | 1 …CameraManager from './ExponentCameraManager';\nimport { ConversionTables, ensureNativeProps } from…
|
| H A D | ExponentCamera.web.js | 6 import CameraManager from './ExponentCameraManager.web'; 76 const isFrontFacingCamera = native.type === CameraManager.Type.front;
|
| H A D | ExponentCamera.web.js.map | 1 …CameraManager from './ExponentCameraManager.web';\nimport { capture } from './WebCameraUtils';\nim…
|
| /expo/packages/expo-camera/build/utils/ |
| H A D | props.js | 2 import CameraManager from '../ExponentCameraManager'; 5 type: CameraManager.Type, 6 flashMode: CameraManager.FlashMode, 7 autoFocus: CameraManager.AutoFocus, 8 whiteBalance: CameraManager.WhiteBalance,
|
| H A D | props.js.map | 1 …CameraManager from '../ExponentCameraManager';\n\n// Values under keys from this object will be tr…
|
| /expo/packages/expo-camera/src/utils/ |
| H A D | props.ts | 11 import CameraManager from '../ExponentCameraManager'; 20 type: CameraManager.Type, 21 flashMode: CameraManager.FlashMode, 22 autoFocus: CameraManager.AutoFocus, 23 whiteBalance: CameraManager.WhiteBalance,
|
| /expo/packages/expo-camera/src/ |
| H A D | Camera.tsx | 75 if (!CameraManager.isAvailableAsync) { 109 Type: CameraManager.Type, 110 FlashMode: CameraManager.FlashMode, 111 AutoFocus: CameraManager.AutoFocus, 115 VideoCodec: CameraManager.VideoCodec, 126 type: CameraManager.Type.back, 127 autoFocus: CameraManager.AutoFocus.on, 290 if (!CameraManager.record) { 302 if (!CameraManager.stopRecording) { 313 if (!CameraManager.pausePreview) { [all …]
|
| H A D | ExponentCameraManager.ts | 3 const CameraManager: Record<string, any> = requireNativeModule('ExponentCamera'); constant 5 export default CameraManager;
|
| H A D | ExponentCamera.web.tsx | 12 import CameraManager from './ExponentCameraManager.web'; 111 const isFrontFacingCamera = native.type === CameraManager.Type.front;
|