Initial commit
This commit is contained in:
23
app/(tabs)/index.tsx
Normal file
23
app/(tabs)/index.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
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',
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user