Bootstrap

This commit is contained in:
Marc Rousavy
2021-02-19 16:07:53 +01:00
parent c1535460e6
commit c04a4b72be
95 changed files with 34639 additions and 2 deletions

32
example/src/App.tsx Normal file
View File

@@ -0,0 +1,32 @@
import * as React from 'react';
import { StyleSheet, View, Text } from 'react-native';
import VisionCamera from 'react-native-vision-camera';
export default function App() {
const [result, setResult] = React.useState<number | undefined>();
React.useEffect(() => {
VisionCamera.multiply(3, 7).then(setResult);
}, []);
return (
<View style={styles.container}>
<Text>Result: {result}</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
box: {
width: 60,
height: 60,
marginVertical: 20,
},
});