From cb61318bc540cafb42c24de3b0fb2424ddd7e256 Mon Sep 17 00:00:00 2001 From: naveen gummella Date: Fri, 26 Jan 2024 11:12:13 +0530 Subject: [PATCH] Delete app/(tabs)/UserProfile.tsx --- app/(tabs)/UserProfile.tsx | 56 -------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 app/(tabs)/UserProfile.tsx diff --git a/app/(tabs)/UserProfile.tsx b/app/(tabs)/UserProfile.tsx deleted file mode 100644 index f0358ed..0000000 --- a/app/(tabs)/UserProfile.tsx +++ /dev/null @@ -1,56 +0,0 @@ -import React from "react"; -import { View, Text, TextInput, TouchableWithoutFeedback, Modal, Button } from "react-native"; - -import { useState } from "react"; - -const UserProfileScreen: React.FC = () => { - const [modalVisible, setModalVisible] = useState(false); - - const handlePress = () => { - setModalVisible(true); - }; - - const handleCloseModal = () => { - setModalVisible(false); - }; - - return ( - - - - Blood Pressure - - - - - Height - - - Weight - - - - - Heart Rate - - - General Summary - - - - - - - - Modal Content -