-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
37 lines (33 loc) · 1.02 KB
/
Copy pathApp.js
File metadata and controls
37 lines (33 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { StatusBar } from "expo-status-bar";
import React from "react";
import { StyleSheet, Text, View, Image } from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import HomeScreen from "./screens/HomeScreen";
import ImagenScreen from "./screens/ImagenScreen";
import logo from './assets/logo.png'
const Stack = createNativeStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="Home" component={HomeScreen}
options={{
headerLeft: () => <Image source={logo} style={styles.logo}/>,
title: "DevproGallery App"
}}/>
<Stack.Screen name="ImageScreen" component={ImagenScreen} />
</Stack.Navigator>
<StatusBar />
</NavigationContainer>
);
}
const styles = StyleSheet.create({
logo:{
width: 37,
height: 37,
marginEnd: -10,
borderRadius: 5,
marginStart: 5
}
})