import { Image, StyleSheet, Platform } from 'react-native';
import ParallaxScrollView from '@/components/default/ParallaxScrollView';
import { ThemedText, ThemedView } from '@/components/theme/Theme';
import { Colors } from '@/constants/Colors';
import { useColorScheme } from '@/hooks/useColorScheme';
const HomeScreen = () => {
const scheme = useColorScheme() ?? 'dark';
return (
}
headerTitle={
Tech Tracker
}
>
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.
Step 2: Explore
Tap the Explore tab to learn more about what's included in this starter app.
Step 3: Get a fresh start
When you're ready, run{' '}
npm run reset-project to get a fresh{' '}
app directory. This will move the current{' '}
app to{' '}
app-example.
);
};
export default HomeScreen;
const styles = StyleSheet.create({
titleContainer: {
flexDirection: 'row',
alignItems: 'center',
gap: 8,
},
stepContainer: {
gap: 8,
marginBottom: 8,
},
reactLogo: {
height: 80,
width: 82,
bottom: 10,
left: 10,
position: 'absolute',
},
headerTitle: {
position: 'absolute',
bottom: 20,
left: 40,
right: 0,
textAlign: 'center',
fontSize: 48,
lineHeight: 64,
fontWeight: 'bold',
},
});