24 lines
471 B
TypeScript
24 lines
471 B
TypeScript
import { Text, View, StyleSheet } from 'react-native';
|
|
import { useTheme } from 'react-native-paper';
|
|
|
|
export default function Index() {
|
|
const theme = useTheme();
|
|
return (
|
|
<View style={[styles.container, {backgroundColor: theme.colors.background}]}>
|
|
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#25292e',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
text: {
|
|
color: '#fff',
|
|
},
|
|
});
|