From f14c6f43c386fde627d786cf695c63eb1feab09a Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Sun, 10 Mar 2024 23:06:49 +0000 Subject: prep: Install lucide react native --- app/_layout.tsx | 12 ++++++++++++ app/index.tsx | 20 ++++++-------------- app/signin.tsx | 13 +++++++++++++ 3 files changed, 31 insertions(+), 14 deletions(-) create mode 100644 app/_layout.tsx create mode 100644 app/signin.tsx (limited to 'app') diff --git a/app/_layout.tsx b/app/_layout.tsx new file mode 100644 index 00000000..38ccb408 --- /dev/null +++ b/app/_layout.tsx @@ -0,0 +1,12 @@ +import { Slot } from "expo-router"; +import { StatusBar } from "expo-status-bar"; +import { View } from "react-native"; + +export default function RootLayout() { + return ( + + + + + ); +} diff --git a/app/index.tsx b/app/index.tsx index c6131fa0..e352ba54 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -1,20 +1,12 @@ -import { StatusBar } from "expo-status-bar"; -import { StyleSheet, Text, View } from "react-native"; +import { Link } from "expo-router"; +import { View } from "react-native"; export default function App() { return ( - - Open up App.tsx to start working on your app! - + + + Signin + ); } - -const styles = StyleSheet.create({ - container: { - flex: 1, - backgroundColor: "#fff", - alignItems: "center", - justifyContent: "center", - }, -}); diff --git a/app/signin.tsx b/app/signin.tsx new file mode 100644 index 00000000..fbb59698 --- /dev/null +++ b/app/signin.tsx @@ -0,0 +1,13 @@ +import Logo from "@/components/Logo"; +import { TextInput, View } from "react-native"; + +export default function Signin() { + return ( + + + + + + + ); +} -- cgit v1.2.3-70-g09d2