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 Notification = () => { const { colors, fonts } = useTheme(); const [menuVisible, setMenuVisible] = useState(false); const [inputContent, setInputContent] = useState(""); const preTextClick = (pretext) => { setInputContent(pretext) } return ( {/* Menu Component */} setMenuVisible(false)} anchor={ setMenuVisible(true)} /> } > console.log('Profile Clicked')} title="Profile" /> console.log('Settings Clicked')} title="Settings" /> console.log('Logout Clicked')} title="Logout" /> To : Select Pretext {[ "Request to Work From Home", "Request for late Check In", "Request for early Check Out", "Notify for Annual Leave", "Notify for Emergency Leave" ].map(text => {preTextClick(text)}} style={[fonts.titleMedium, {marginBottom:20, fontWeight:"bold", color:colors.secondary}]} >{text} )} ); }; const styles = StyleSheet.create({ container: { flex: 1, padding: 20, width: '100%', }, textArea: { height: 220, borderColor: "#ccc", borderWidth: 1, padding: 10, borderRadius: 8, textAlignVertical: "top", // Makes text start from the top-left backgroundColor: "#fff", marginBottom:20 }, badge: { backgroundColor: "#BB5C3F", color: "#FFF", borderRadius: 100, paddingVertical: 4, paddingHorizontal: 6, fontSize: 10, fontWeight: "400", verticalAlign: "middle", marginStart: 5 }, titleContainer: { flex: 1, alignItems: 'center', }, title: { fontWeight: 'bold', }, icon: { padding: 10, position: "absolute", right: 10, color: "#D9D9D9" } }); export default Notification;