// Screen for viewing notifications
import { View, Text } from "../../../components/Themed";
import { StyleSheet } from "react-native";
import Colors from "../../../constants/Colors";
export default function Notifications() {
return (
<View style={styles.container}>
<Text style={styles.text}>
This feature is currently in the works.{"\n"}
Check in on it in a few😋
</Text>
</View>
);
}
const styles= StyleSheet.create({
container:{
flex: 1,
alignItems: "center",
backgroundColor:Colors.dark.tabBg,
justifyContent: "center"
},
text:{
fontSize: 20,
fontWeight: "bold",
textAlign: "center",
color: Colors.dark.text
}
})