import { Image } from "expo-image" import { Link } from "expo-router" import { Platform, StyleSheet } from "react-native" import { HelloWave } from "@/components/hello-wave" import ParallaxScrollView from "@/components/parallax-scroll-view" import { ThemedText } from "@/components/themed-text" import { ThemedView } from "@/components/themed-view" 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. Step 2: Explore alert("Action pressed")} /> alert("Share pressed")} /> alert("Delete pressed")} /> {`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. ) } 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", }, })