| 123456789101112131415161718 |
- import { View, Text } from 'react-native';
- export default function HomeScreen() {
- return (
- <View
- style={{
- flex: 1,
- flexDirection: 'column',
- justifyContent: 'center',
- alignItems: 'center',
- paddingHorizontal: 4
- }}
- >
- <Text>You've logged in to: </Text>
- <Text>Home Page</Text>
- </View>
- );
- }
|