28 lines
491 B
TypeScript
28 lines
491 B
TypeScript
import { Text } from '@react-navigation/elements';
|
|
import { Image, StyleSheet, Platform } from 'react-native';
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<Text>Hello World</Text>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
titleContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 8,
|
|
},
|
|
stepContainer: {
|
|
gap: 8,
|
|
marginBottom: 8,
|
|
},
|
|
reactLogo: {
|
|
height: 178,
|
|
width: 290,
|
|
bottom: 0,
|
|
left: 0,
|
|
position: 'absolute',
|
|
},
|
|
});
|