diff --git a/app/_layout.tsx b/app/_layout.tsx index 8d506f7..d274750 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -20,7 +20,7 @@ export default function RootLayout() { return ( - + diff --git a/app/login.tsx b/app/login.tsx new file mode 100644 index 0000000..9db785c --- /dev/null +++ b/app/login.tsx @@ -0,0 +1,21 @@ +import { TextInput, View, StyleSheet, Button } from 'react-native' + +export default function LoginView() { + const styles = StyleSheet.create({ + container: { + padding: 16, + gap: 8 + }, + textfield: { + borderColor: 'transparent', + borderBottomColor: '#ccc', + borderWidth: 1, + paddingVertical: 4 + } + }) + return + + +