From d1a8106c810b820690c278b2baa9f3f7f2a061a0 Mon Sep 17 00:00:00 2001 From: Sanidhya Kumar Verma Date: Wed, 4 Sep 2024 11:56:20 +0000 Subject: [PATCH] chat screen ui completed --- app/(root)/(tabs)/chat.tsx | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/app/(root)/(tabs)/chat.tsx b/app/(root)/(tabs)/chat.tsx index 16d0727..54c9be7 100644 --- a/app/(root)/(tabs)/chat.tsx +++ b/app/(root)/(tabs)/chat.tsx @@ -1,10 +1,28 @@ -import { Text } from "react-native"; +import { Image, ScrollView, Text, View } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; +import { images } from "@/constants"; + const Chat = () => { return ( - - Chat + + + Chat + + message + + No Messages Yet + + + Start a conversation with your friends and family + + + ); };