-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
33 lines (23 loc) · 1.01 KB
/
App.js
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
import 'react-native-gesture-handler'
import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import { View,Text,Button,Image } from 'react-native';
import TelaInicial from './components/TelaInicial';
import TelaJogos from './components/TelaJogos';
import TelaConsole from './components/TelaConsoles';
import TelaNuvem from './components/TelaNuvem'
const Stack = createStackNavigator();
export default function App(){
return(
<NavigationContainer >
<Stack.Navigator screenOptions={{headerStyle: {
height: 65,
backgroundColor: 'white', }, }}>
<Stack.Screen name="Tela inicial" component = {TelaInicial}/>
<Stack.Screen name="Consoles" component = {TelaConsole}/>
<Stack.Screen name="Jogos" component = {TelaJogos}/>
<Stack.Screen name="Nuvem" component = {TelaNuvem}/>
</Stack.Navigator>
</NavigationContainer>
)}