import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; import { useAppTheme } from '@theme'; const InboxScreen: React.FC = () => { const { colors } = useAppTheme(); return ( Inbox Screen ); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', }, screenTitle: { fontSize: 18, }, }); export default InboxScreen;