react-native-vision-camera/package/ios
Marc Rousavy b1fa06514f
fix: Catch insufficient-storage errors (#2422)
* fix: Catch `insufficient-storage` errors

* feat: Implement `insufficient-storage` error for Android

* fix: Catch insufficient storage error also on takePhoto android
2024-01-24 11:48:38 +01:00
..
Core
Extensions
Frame Processor
Parsers
React Utils
Types
VisionCamera.xcodeproj
.swift-version
.swiftformat
.swiftlint.yml chore: Update swiftlint to latest (#2398) 2024-01-16 18:01:41 +01:00
CameraBridge.h
CameraDevicesManager.m
CameraDevicesManager.swift
CameraView.swift fix: Prevent phone from going to sleep if Camera is active (#2421) 2024-01-19 12:35:33 +01:00
CameraView+Focus.swift
CameraView+RecordVideo.swift
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.