docs: Lifecycle (#182)

* Add docs for Lifecycle

* Update CAPTURING.mdx

* move

* Update DEVICES.mdx

* Update FRAME_PROCESSOR_PLUGIN_LIST.mdx

* f

* move FP

* separate focusing

* fix links
This commit is contained in:
Marc Rousavy
2021-06-07 15:55:20 +02:00
committed by GitHub
parent 2915b176b2
commit a02f378a4b
12 changed files with 95 additions and 53 deletions

View File

@@ -289,7 +289,7 @@ export interface CameraDevice {
*/
supportsRawCapture: boolean;
/**
* Specifies whether this device supports focussing ({@linkcode Camera.focus | Camera.focus(...)})
* Specifies whether this device supports focusing ({@linkcode Camera.focus | Camera.focus(...)})
*/
supportsFocus: boolean;
}

View File

@@ -26,7 +26,7 @@ export interface CameraProps extends ViewProps {
*/
device: CameraDevice;
/**
* Whether the Camera should actively stream video frames, or not. See the [documentation about the `isActive` prop](https://cuvent.github.io/react-native-vision-camera/docs/guides/devices#the-isactive-prop) for more information.
* Whether the Camera should actively stream video frames, or not. See the [documentation about the `isActive` prop](https://cuvent.github.io/react-native-vision-camera/docs/guides/lifecycle#the-isactive-prop) for more information.
*
* This can be compared to a Video component, where `isActive` specifies whether the video is paused or not.
*