import React, { useState } from 'react';
import { View, StyleSheet, TextInput, Text, ScrollView } from 'react-native';
import { Appbar, Menu, Avatar, useTheme, Button } from 'react-native-paper';
import Icon from 'react-native-vector-icons/MaterialIcons';
import dpuser from "@/assets/images/userdp.png";
const Request = () => {
const { colors, fonts } = useTheme();
const [menuVisible, setMenuVisible] = useState(false);
const [searchInput, setSearchInput] = useState("")
const renderNotificationAction = () => {
return (
7:55AM
Invest Pahang
ID No : Ariffudin@PSK
Muhammad Ariffudin is working from home today
)
}
const renderNotificationResult = (result) => {
return (
7:55AM
Invest Pahang
ID No : Ariffudin@PSK
Muhammad Ariffudin is working from home today
{(result) ?
Request Accepted :
Request Decline
}
)
}
return (
{/* Menu Component */}
General
Request 1
{[1,2].map(() => renderNotificationAction())}
{[1].map(() => renderNotificationResult(true))}
{[1].map(() => renderNotificationResult(false))}
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 20,
width: '100%',
},
badge: {
backgroundColor: "#BB5C3F",
color: "#FFF",
borderRadius: 100,
paddingVertical: 4,
paddingHorizontal: 6,
fontSize: 10,
fontWeight: "400",
verticalAlign: "middle",
marginStart: 5
},
tabContainer: {
flexDirection: "row",
marginBottom: 20
},
tabButton: {
fontWeight: "bold",
paddingVertical: 15,
width: "50%",
textAlign: "center",
active: {
borderBottomWidth: 2,
}
},
titleContainer: {
flex: 1,
alignItems: 'center',
},
title: {
fontWeight: 'bold',
},
searchSection: {
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
marginBottom: 20
},
icon: {
padding: 10,
position: "absolute",
right: 10,
color: "#D9D9D9"
},
input: {
height: 40,
flex: 1,
borderWidth: 1,
paddingVertical: 10,
paddingHorizontal: 20,
borderRadius: 100,
borderColor: "#C0CFD0"
}
});
export default Request;