Added Email to bottomCustomTabBar, Added EmailScreen. Pending setting drawer on main page

This commit is contained in:
2024-07-28 21:06:59 +08:00
parent f20b0ad4e8
commit 8f7aa6862b
9 changed files with 308 additions and 218 deletions

28
screens/EmailScreen.tsx Normal file
View File

@@ -0,0 +1,28 @@
// EmailScreen.tsx
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
const EmailScreen: React.FC = () => {
return (
<View style={styles.container}>
<Text style={styles.header}>Email Screen T^T</Text>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#f8f0fc',
padding: 20,
justifyContent: 'center',
alignItems: 'center',
},
header: {
fontSize: 24,
fontWeight: 'bold',
color: '#ff69b4',
},
});
export default EmailScreen;