react-native-vision-camera/example/src/Settings.tsx

26 lines
452 B
TypeScript
Raw Normal View History

2021-02-19 10:02:24 -07:00
import React from 'react';
import { StyleSheet, View, Text } from 'react-native';
2021-02-19 10:17:37 -07:00
export default function Settings() {
2021-02-19 10:02:24 -07:00
return (
<View style={styles.container}>
<Text>powered by Cuvent</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'white',
},
box: {
width: 60,
height: 60,
marginVertical: 20,
},
});