react-native-vision-camera/package/ios
Marc Rousavy cad5240420
fix: Move minExposure/maxExposure from format into device (#2211)
* fix: Move `minExposure`/`maxExposure` into `device`

* Update docs

* chore: Remove unneeded dependency

* chore: Update code
2023-11-24 18:20:56 +01:00
..
Core fix: Move minExposure/maxExposure from format into device (#2211) 2023-11-24 18:20:56 +01:00
Extensions fix: Move minExposure/maxExposure from format into device (#2211) 2023-11-24 18:20:56 +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
Types fix: Move minExposure/maxExposure from format into device (#2211) 2023-11-24 18:20:56 +01:00
VisionCamera.xcodeproj fix: Fix Video Recording delay and improve startRecording() performance (#2192) 2023-11-22 17:53:10 +01:00
.swift-version
.swiftformat
.swiftlint.yml
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
CameraDevicesManager.swift
CameraView.swift fix: Fix torch not being reset after video recording (#2209) 2023-11-23 22:19:44 +01:00
CameraView+Focus.swift
CameraView+RecordVideo.swift fix: Fix torch not being reset after video recording (#2209) 2023-11-23 22:19:44 +01:00
CameraView+TakePhoto.swift
CameraView+Zoom.swift
CameraViewManager.m
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.