import { Image } from 'expo-image';
import { Platform, StyleSheet } from 'react-native';
import ParallaxScrollView from '@/components/parallax-scroll-view';
import { ThemedView } from '@/components/themed-view';
import { ThemedText } from '@/components/ui/themed-text';
export default function HomeScreen() {
return (
}>
Welcome!
Step 1: Try it
Edit app/(tabs)/index.tsx to see changes.
Press{' '}
{Platform.select({
ios: 'cmd + d',
android: 'cmd + m',
web: 'F12',
})}
{' '}
to open developer tools.
);
}
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',
},
});