Untitled
user_9363972
javascript
a year ago
1.5 kB
8
Indexable
import { Image, StyleSheet, Platform, TouchableOpacity } from "react-native"; import { HelloWave } from "@/components/HelloWave"; import ParallaxScrollView from "@/components/ParallaxScrollView"; import { ThemedText } from "@/components/ThemedText"; import { ThemedView } from "@/components/ThemedView"; import { Ionicons } from "@expo/vector-icons"; import { useRouter } from "expo-router"; export default function HomeScreen() { const router = useRouter(); return ( <ParallaxScrollView headerBackgroundColor={{ light: "#A1CEDC", dark: "#1D3D47" }} headerImage={ <Image source={require("@/assets/images/partial-react-logo.png")} style={styles.reactLogo} /> } > <ThemedView style={styles.titleContainer}> <ThemedText type="title">Welcome! this is Note List</ThemedText> <HelloWave /> </ThemedView> <ThemedView style={styles.stepContainer}> <TouchableOpacity onPress={() => router.replace("/create")}> <Ionicons name="checkmark-circle" size={32} color="green" /> </TouchableOpacity> </ThemedView> </ParallaxScrollView> ); } 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", }, });
Editor is loading...
Leave a Comment