import { Text, View, StyleSheet } from 'react-native'; import { useTheme } from 'react-native-paper'; export default function Index() { const theme = useTheme(); return ( ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#25292e', justifyContent: 'center', alignItems: 'center', }, text: { color: '#fff', }, });