26 lines
562 B
TypeScript
26 lines
562 B
TypeScript
import React from 'react';
|
|
import { View, Text, StyleSheet } from 'react-native';
|
|
import { useAppTheme } from '@theme';
|
|
|
|
const InboxScreen: React.FC = () => {
|
|
const { colors } = useAppTheme();
|
|
return (
|
|
<View style={[styles.container, { backgroundColor: colors.background }] }>
|
|
<Text style={styles.screenTitle}>Inbox Screen</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
screenTitle: {
|
|
fontSize: 18,
|
|
},
|
|
});
|
|
|
|
export default InboxScreen;
|