react-native-vision-camera/package/ios
Marc Rousavy 6640b72a00
feat: Code Scanner API (#1912)
* feat: CodeScanner JS API

* feat: iOS

* Use guard

* Format

* feat: Android base

* fix: Attach Surfaces

* Use isBusy var

* fix: Use separate Queue

* feat: Finish iOS types

* feat: Implement all other code types on Android

* fix: Call JS event

* fix: Pass codetypes on Android

* fix: iOS use Preview coordinate system

* docs: Add comments

* chore: Format code

* Update CameraView+AVCaptureSession.swift

* docs: Add Code Scanner docs

* docs: Update

* feat: Use lazily downloaded model on Android

* Revert changes in CameraPage

* Format

* fix: Fix empty QR codes

* Update README.md
2023-10-04 12:53:52 +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: 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: Code Scanner API (#1912) 2023-10-04 12:53:52 +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: Code Scanner API (#1912) 2023-10-04 12:53:52 +02:00
CameraView+CodeScanner.swift feat: Code Scanner API (#1912) 2023-10-04 12:53:52 +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 feat: Add customizable Video Bit Rate (videoBitRate) (#1882) 2023-09-29 15:27:09 +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 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 feat: Code Scanner API (#1912) 2023-10-04 12:53:52 +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.