Install RNN

This commit is contained in:
Marc Rousavy
2021-02-19 18:02:24 +01:00
parent 3597fa949d
commit fa1c5fa698
10 changed files with 5769 additions and 32 deletions

View File

@@ -16,6 +16,7 @@ const styles = StyleSheet.create({
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'white',
},
box: {
width: 60,

25
example/src/Settings.tsx Normal file
View File

@@ -0,0 +1,25 @@
import React from 'react';
import { StyleSheet, View, Text } from 'react-native';
export default function App() {
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,
},
});