diff --git a/.expo-shared/assets.json b/.expo-shared/assets.json new file mode 100644 index 0000000..1e6decf --- /dev/null +++ b/.expo-shared/assets.json @@ -0,0 +1,4 @@ +{ + "12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true, + "40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ec8a36a --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +node_modules/ +.expo/ +dist/ +npm-debug.* +*.jks +*.p8 +*.p12 +*.key +*.mobileprovision +*.orig.* +web-build/ + +# macOS +.DS_Store diff --git a/App.js b/App.js new file mode 100644 index 0000000..d9c27f1 --- /dev/null +++ b/App.js @@ -0,0 +1,91 @@ +import { StyleSheet, Text, View, TextInput, Button } from 'react-native'; +import { useState } from 'react'; + + + +export default function App() { + + // -------------------- states --------------------------------------- + + + // ------------------- event handlers --------------------------------- + + + // a function that listens for words for user to enter + + function wordInputHandler(enteredText) { + console.log(enteredText) + }; + + // a function that fires up when Translate button is clicked + + function translateHandler() { + + }; + + + + + // ------------------------------ The app view -------------------------- + + return ( + + + + + +