react-native-vision-camera/package/ios
Marc Rousavy 6e72781500
feat: Use correct photo and video format dimensions on iOS (#1929)
* feat: Use new photo dimensions API

* Update AVCaptureDevice.Format+matchesFilter.swift

* fix: Use Pixels instead of Points for video size

* feat: Set `PhotoOutput`'s maximum photo resolution

* fix: Compare dictionaries instead

* chore: Format code

* fix: Try to use hash.... failing atm

* fix: Use rough comparison again

* fix: Also take video HDR into consideration

* chore: Format

* Use contains

* Update AVCaptureDevice.Format+toDictionary.swift

* docs: Add better docs to Camera props

* Update CameraView+AVCaptureSession.swift

* Update CameraView+AVCaptureSession.swift
2023-10-06 16:11:09 +02:00
..
Extensions feat: Use correct photo and video format dimensions on iOS (#1929) 2023-10-06 16:11:09 +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: Code Scanner API (#1912) 2023-10-04 12:53:52 +02:00
React Utils chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
Types feat: Code Scanner API (#1912) 2023-10-04 12:53:52 +02:00
VisionCamera.xcodeproj feat: Use correct photo and video format dimensions on iOS (#1929) 2023-10-06 16:11:09 +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 fix: Allow nil preferredDevice 2023-09-27 12:51:38 +02:00
CameraError.swift feat: Code Scanner API (#1912) 2023-10-04 12:53:52 +02:00
CameraQueues.swift feat: Code Scanner API (#1912) 2023-10-04 12:53:52 +02:00
CameraView.swift feat: Code Scanner API (#1912) 2023-10-04 12:53:52 +02:00
CameraView+AVAudioSession.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+AVCaptureSession.swift feat: Use correct photo and video format dimensions on iOS (#1929) 2023-10-06 16:11:09 +02:00
CameraView+CodeScanner.swift feat: Code Scanner API (#1912) 2023-10-04 12:53:52 +02:00
CameraView+Focus.swift fix: Fix focus() on iOS (#1943) 2023-10-06 14:30:12 +02:00
CameraView+Orientation.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+RecordVideo.swift feat: Add customizable Video Bit Rate (videoBitRate) (#1882) 2023-09-29 15:27:09 +02:00
CameraView+TakePhoto.swift feat: Use correct photo and video format dimensions on iOS (#1929) 2023-10-06 16:11:09 +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 feat: Code Scanner API (#1912) 2023-10-04 12:53:52 +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 fix: Fix focus() on iOS (#1943) 2023-10-06 14:30:12 +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.