diff --git a/docs/docs/ANIMATED.md b/docs/docs/ANIMATED.md index 85d25c0..9b24e87 100644 --- a/docs/docs/ANIMATED.md +++ b/docs/docs/ANIMATED.md @@ -5,7 +5,7 @@ sidebar_label: Zooming with Reanimated ---
- +
## Animations diff --git a/docs/docs/DEVICES.md b/docs/docs/DEVICES.md index 7c0e57e..5a8fd6f 100644 --- a/docs/docs/DEVICES.md +++ b/docs/docs/DEVICES.md @@ -5,7 +5,7 @@ sidebar_label: Camera Devices ---
- +
### What are camera devices? diff --git a/docs/docs/ERRORS.md b/docs/docs/ERRORS.md index b999481..478952e 100644 --- a/docs/docs/ERRORS.md +++ b/docs/docs/ERRORS.md @@ -5,7 +5,7 @@ sidebar_label: Camera Errors ---
- +
## Why? diff --git a/docs/docs/FORMATS.md b/docs/docs/FORMATS.md index 5ced71b..afdc232 100644 --- a/docs/docs/FORMATS.md +++ b/docs/docs/FORMATS.md @@ -5,7 +5,7 @@ sidebar_label: Camera Formats ---
- +
### What are camera formats? diff --git a/docs/docs/FRAME_PROCESSORS.md b/docs/docs/FRAME_PROCESSORS.md index 08824aa..a261ee3 100644 --- a/docs/docs/FRAME_PROCESSORS.md +++ b/docs/docs/FRAME_PROCESSORS.md @@ -10,7 +10,7 @@ FRAME PROCESSORS ARE STILL WORK IN PROGRESS - SEE [#2](https://github.com/cuvent
- +
### What are frame processors? @@ -20,7 +20,7 @@ Frame processors are functions that are written in JavaScript (or TypeScript) wh For example, you might want to create a QR code scanner _without ever writing native code while still achieving almost-native performance_. Since you can write the scanning part yourself, you can implement a custom QR code system like the one Snapchat uses for Snap-codes.
- +

diff --git a/docs/docs/SETUP.md b/docs/docs/SETUP.md index 207bba7..2b4dfb4 100644 --- a/docs/docs/SETUP.md +++ b/docs/docs/SETUP.md @@ -6,7 +6,7 @@ slug: / ---
- +
## Installing the library diff --git a/docs/docs/TROUBLESHOOTING.md b/docs/docs/TROUBLESHOOTING.md index 429731b..e6338bb 100644 --- a/docs/docs/TROUBLESHOOTING.md +++ b/docs/docs/TROUBLESHOOTING.md @@ -5,7 +5,7 @@ sidebar_label: Troubleshooting ---
- +
Before opening an issue, make sure you try the following: diff --git a/example/README.md b/example/README.md index 92cbed1..99a0de6 100644 --- a/example/README.md +++ b/example/README.md @@ -1,5 +1,5 @@
- +

Vison Camera playground

diff --git a/example/src/Splash.tsx b/example/src/Splash.tsx index c61e804..fe5c929 100644 --- a/example/src/Splash.tsx +++ b/example/src/Splash.tsx @@ -7,7 +7,7 @@ import { Camera, CameraPermissionStatus } from 'react-native-vision-camera'; import { CONTENT_SPACING, SAFE_AREA_PADDING } from './Constants'; // eslint-disable-next-line @typescript-eslint/no-var-requires -const BANNER_IMAGE = require('../../img/11.png') as ImageRequireSource; +const BANNER_IMAGE = require('../docs/static/img/11.png') as ImageRequireSource; export const Splash: NavigationFunctionComponent = ({ componentId }) => { const [cameraPermissionStatus, setCameraPermissionStatus] = useState('not-determined');