You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
715 B
31 lines
715 B
import { StyleSheet } from 'react-native'; |
|
|
|
import EditScreenInfo from '@/components/EditScreenInfo'; |
|
import { Text, View } from '@/components/Themed'; |
|
|
|
export default function TabTwoScreen() { |
|
return ( |
|
<View style={styles.container}> |
|
<Text style={styles.title}>Tab Two</Text> |
|
<View style={styles.separator} lightColor="#eee" darkColor="rgba(255,255,255,0.1)" /> |
|
<EditScreenInfo path="app/(tabs)/two.tsx" /> |
|
</View> |
|
); |
|
} |
|
|
|
const styles = StyleSheet.create({ |
|
container: { |
|
flex: 1, |
|
alignItems: 'center', |
|
justifyContent: 'center', |
|
}, |
|
title: { |
|
fontSize: 20, |
|
fontWeight: 'bold', |
|
}, |
|
separator: { |
|
marginVertical: 30, |
|
height: 1, |
|
width: '80%', |
|
}, |
|
});
|
|
|