2021-02-19 10:02:24 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import { StyleSheet, View, Text } from 'react-native';
|
2021-02-19 10:43:41 -07:00
|
|
|
import type { NavigationFunctionComponent } from 'react-native-navigation';
|
2021-02-19 10:02:24 -07:00
|
|
|
|
2021-02-19 10:43:41 -07:00
|
|
|
export const Settings: NavigationFunctionComponent = ({ componentId }) => {
|
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,
|
|
|
|
},
|
|
|
|
});
|