Files
CityExplorer/app/(tabs)/index.tsx
2025-04-07 21:26:22 +02:00

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',
},
});