react-native-vision-camera/package/ios
Marc Rousavy 2d66d5893c
docs: New V3 docs for new API (#1842)
* docs: New V3 docs for new API

* fix: Prefer Wide-Angle unless explicitly opted-out

* docs: Update DEVICES

* Finish Devices docs

* Switch links

* Revert "Switch links"

This reverts commit 06f196ae0e67787cbd5768e125be6d0a3cb5bbc9.

* docs: New LIFECYCLE

* docs: New CAPTURING docs

* Update Worklets links

* docs: Update TROUBLESHOOTING and ZOOMING

* fix: Update `getAvailableCameraDevices()` usages

* docs: Update FORMATS

* Update Errors.kt

* docs: Fix broken links

* docs: Update references to old hooks

* docs: Create Frame Processor Tips

* docs: Auto-dark mode

* fix: Fix FPS filter

* feat: Add `'max'` flag to format filter

* fix: Use loop

* fix: Fix bug in `getCameraFormat`

* fix: Find best aspect ratio as well

* fix: Switch between formats on FPS change

* Update FRAME_PROCESSOR_PLUGIN_LIST.mdx

* Add FPS graph explanation

* feat: Support HDR filter

* docs: Add HDR docs

* docs: Add Video Stabilization

* docs: Update Skia docs

* Skia links

* Add Skia labels

* Update SKIA_FRAME_PROCESSORS.mdx

* docs: Add Performance

* Update some wording

* Update headers / and zoom

* Add examples for devices

* fix highlights

* fix: Expose `Frame`

* docs: Update FP docs

* Update links

* Update FRAME_PROCESSOR_CREATE_PLUGIN_IOS.mdx
2023-09-25 12:57:03 +02:00
..
Extensions feat: Add support for Buffer Compression for a more efficient Video Pipeline (enableBufferCompression) (#1828) 2023-09-21 17:18:54 +02:00
Frame Processor feat: Add support for Buffer Compression for a more efficient Video Pipeline (enableBufferCompression) (#1828) 2023-09-21 17:18:54 +02:00
Parsers feat: Add support for Buffer Compression for a more efficient Video Pipeline (enableBufferCompression) (#1828) 2023-09-21 17:18:54 +02:00
React Utils chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
Types feat: Implement resizeMode prop for iOS (#1838) 2023-09-23 10:14:27 +02:00
VisionCamera.xcodeproj feat: Implement resizeMode prop for iOS (#1838) 2023-09-23 10:14:27 +02:00
.swift-version chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
.swiftformat chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
.swiftlint.yml chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraBridge.h feat: New JS API for useCameraDevice and useCameraFormat and much faster getAvailableCameraDevices() (#1784) 2023-09-21 11:20:33 +02:00
CameraDevicesManager.m feat: New JS API for useCameraDevice and useCameraFormat and much faster getAvailableCameraDevices() (#1784) 2023-09-21 11:20:33 +02:00
CameraDevicesManager.swift feat: Add support for LiDAR, TrueDepth, External (USB) and Continuity Camera Devices (iOS 17) (#1824) 2023-09-21 16:29:46 +02:00
CameraError.swift docs: New V3 docs for new API (#1842) 2023-09-25 12:57:03 +02:00
CameraQueues.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView.swift feat: Implement resizeMode prop for iOS (#1838) 2023-09-23 10:14:27 +02:00
CameraView+AVAudioSession.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+AVCaptureSession.swift feat: Add support for Buffer Compression for a more efficient Video Pipeline (enableBufferCompression) (#1828) 2023-09-21 17:18:54 +02:00
CameraView+Focus.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+Orientation.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+RecordVideo.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+TakePhoto.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+Torch.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+Zoom.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraViewManager.m docs: New V3 docs for new API (#1842) 2023-09-25 12:57:03 +02:00
CameraViewManager.swift feat: New JS API for useCameraDevice and useCameraFormat and much faster getAvailableCameraDevices() (#1784) 2023-09-21 11:20:33 +02:00
PhotoCaptureDelegate.swift fix: Fix potential bug in Photo Orientation (#1765) 2023-09-06 11:30:58 +02:00
PreviewView.swift feat: Implement resizeMode prop for iOS (#1838) 2023-09-23 10:14:27 +02:00
README.md chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
RecordingSession.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00

ios

This folder contains the iOS-platform-specific code for react-native-vision-camera.

Prerequesites

  1. Install Xcode tools
    xcode-select --install
    
  2. Install need SwiftFormat and SwiftLint
    brew install swiftformat swiftlint
    

Getting Started

It is recommended that you work on the code using the Example project (example/ios/VisionCameraExample.xcworkspace), since that always includes the React Native header files, plus you can easily test changes that way.

You can however still edit the library project here by opening VisionCamera.xcodeproj, this has the advantage of automatically formatting your Code (swiftformat) and showing you Linter errors (swiftlint) when trying to build (+B).

Committing

Before committing, make sure that you're not violating the Swift or C++ codestyles. To do that, run the following command:

yarn check-ios

This will also try to automatically fix any errors by re-formatting the Swift code.