-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
58 lines (56 loc) · 1.78 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import React from 'react';
import 'react-native-gesture-handler';
import { StyleSheet, Text, View } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator, HeaderBackground } from '@react-navigation/stack';
import StartScreen from './app/screens/StartScreen';
import SearchResultScreen from './app/screens/SearchResultScreen';
import FavouritesScreen from './app/screens/FavouritesScreen';
import Color from './app/config/Color';
import GlobalStyles from './app/styles/GlobalStyles';
const Stack = createStackNavigator();
// The app contains 3 available screens:
// StartScreen: Home
// SearchResultScreen: Found Artist Info
// FavouritesScreen: Favourite Artists & Albums
export default function App() {
let navStyle = [
GlobalStyles.BackgroundColor, GlobalStyles.ShadowColor
]
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name = 'StartScreen'
component = {StartScreen}
options = {{
title: 'Home',
headerStyle: navStyle,
headerTintColor: Color.FOREGROUND,
}}
>
</Stack.Screen>
<Stack.Screen
name = 'SearchResultScreen'
component = {SearchResultScreen}
options = {{
title: 'Search Result',
headerStyle: navStyle,
headerTintColor: Color.FOREGROUND,
}}
>
</Stack.Screen>
<Stack.Screen
name = 'FavouritesScreen'
component = {FavouritesScreen}
options = {{
title: 'My Favourites',
headerStyle: navStyle,
headerTintColor: Color.FOREGROUND,
}}
>
</Stack.Screen>
</Stack.Navigator>
</NavigationContainer>
);
}