1- import { Image , StyleSheet } from ' react-native' ;
1+ import { Image , StyleSheet } from " react-native" ;
22
3- import ParallaxScrollView from ' @/components/ParallaxScrollView' ;
4- import { ThemedText } from ' @/components/ThemedText' ;
5- import { ThemedView } from ' @/components/ThemedView' ;
6- import { Link } from "expo-router" ;
3+ import ParallaxScrollView from " @/components/ParallaxScrollView" ;
4+ import { ThemedText } from " @/components/ThemedText" ;
5+ import { ThemedView } from " @/components/ThemedView" ;
6+ import { Link } from "expo-router" ;
77
88export default function HomeScreen ( ) {
99 return (
1010 < ParallaxScrollView
11- headerBackgroundColor = { { light : '#A1CEDC' , dark : '#1D3D47' } }
12- headerImage = {
13- < Image
14- source = { require ( '@/assets/images/partial-react-logo.png' ) }
15- style = { styles . reactLogo }
16- />
17- } >
11+ headerBackgroundColor = { { light : "#A1CEDC" , dark : "#1D3D47" } }
12+ headerImage = { < Image source = { require ( "@/assets/images/partial-react-logo.png" ) } style = { styles . reactLogo } /> } >
1813 < ThemedView style = { styles . titleContainer } >
19- < ThemedText type = { "title" } style = { { fontFamily : "Outfit" } } >
14+ < ThemedText type = { "title" } style = { { fontFamily : "Outfit" } } >
2015 PlatMate - React Native Boilerplate
2116 </ ThemedText >
2217 </ ThemedView >
2318 < ThemedView >
24- < ThemedText type = { "default" } style = { { fontFamily : "Outfit" } } >
25- This page serves as the landing page of the app. This code is boilerplate code made
26- to give you a brief overview of best practices for React Native development.
19+ < ThemedText type = { "default" } style = { { fontFamily : "Outfit" } } >
20+ This page serves as the landing page of the app. This code is boilerplate code made to give you a
21+ brief overview of best practices for React Native development.
2722 </ ThemedText >
2823 </ ThemedView >
2924 < ThemedView >
3025 < Link href = { "/about" } >
31- < ThemedText type = { "default" } lightColor = { "#20c1e6" } style = { { fontFamily : "Outfit" } } >
26+ < ThemedText type = { "default" } lightColor = { "#20c1e6" } style = { { fontFamily : "Outfit" } } >
3227 Click here to view an example stack.
3328 </ ThemedText >
3429 </ Link >
@@ -39,15 +34,15 @@ export default function HomeScreen() {
3934
4035const styles = StyleSheet . create ( {
4136 titleContainer : {
42- flexDirection : ' row' ,
43- alignItems : ' center' ,
37+ flexDirection : " row" ,
38+ alignItems : " center" ,
4439 gap : 8 ,
4540 } ,
4641 reactLogo : {
4742 height : 178 ,
4843 width : 290 ,
4944 bottom : 0 ,
5045 left : 0 ,
51- position : ' absolute' ,
46+ position : " absolute" ,
5247 } ,
5348} ) ;
0 commit comments