Update README.md

This commit is contained in:
Marc Rousavy 2021-02-20 16:45:10 +01:00
parent 84a7a2f841
commit 1a3707ff16

View File

@ -15,7 +15,7 @@
<img src="img/11.png" width="55%"> <img src="img/11.png" width="55%">
<br /> <br />
<br /> <br />
<blockquote><h4>The most powerful Camera component for react-native.</h4></blockquote> <blockquote><h4>📸 The Camera library that sees the vision.</h4></blockquote>
<br /> <br />
<a href='https://ko-fi.com/F1F8CLXG' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://az743702.vo.msecnd.net/cdn/kofi2.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a> <a href='https://ko-fi.com/F1F8CLXG' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://az743702.vo.msecnd.net/cdn/kofi2.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
<br /> <br />
@ -32,9 +32,9 @@
<br/> <br/>
<br/> <br/>
1. TODO: Better description <div>
2. TODO: Demo Screenshot from Cuvent <img align="right" width="35%" src="./img/example.png">
</div>
### Install ### Install
@ -42,3 +42,19 @@
npm i react-native-vision-camera npm i react-native-vision-camera
npx pod-install npx pod-install
``` ```
### Example
```tsx
function App() {
const device = useCameraDevice('wide-angle')
return (
<Camera
style={StyleSheet.absoluteFill}
device={device}
/>
)
}
```