react-native-vision-camera/package/ios
2024-01-26 10:20:55 +01:00
..
Core
Extensions chore: Remove unused file AVCaptureConnection+setInterfaceOrientation.swift 2024-01-26 10:20:55 +01:00
Frame Processor
Parsers fix: Fix iOS not reading videoCodec and videoBitRate from options (#2202) 2023-11-22 17:54:49 +01:00
React Utils chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
Types
VisionCamera.xcodeproj chore: Remove unused file AVCaptureConnection+setInterfaceOrientation.swift 2024-01-26 10:20:55 +01:00
.swift-version
.swiftformat
.swiftlint.yml
CameraBridge.h
CameraDevicesManager.m
CameraDevicesManager.swift
CameraView.swift
CameraView+Focus.swift
CameraView+RecordVideo.swift
CameraView+TakePhoto.swift
CameraView+Zoom.swift
CameraViewManager.m perf: Make getCameraPermission and getMicrophonePermission synchronous (#2302) 2023-12-19 14:22:04 +01:00
CameraViewManager.swift
README.md

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.