-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
49 lines (45 loc) · 1.13 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
'use strict';
import React from 'react';
import {
StyleSheet,
} from 'react-native';
import { StackNavigator } from 'react-navigation';
import HomeView from './HomeView';
import MovieView from './MovieView';
// Using 'React Navigation' library for screen navigation
const AppScreens = StackNavigator({
Home: {
screen: HomeView,
navigationOptions: () => ({
title: 'The Movie DB Accessor',
headerTitleStyle: styles.stackNavHeaderTitle,
headerStyle: styles.stackNavHeader,
headerTintColor: '#fff',
}),
},
MovieDetails: {
screen: MovieView,
navigationOptions: ({navigation}) => ({
title: `Info - ${navigation.state.params.movieDataJson.title}`,
headerTitleStyle: styles.stackNavHeaderTitle,
headerStyle: styles.stackNavHeader,
headerTintColor: '#fff',
}),
},
});
// Using 'Create React Native App' with the Expo mobile app
export default class App extends React.Component {
render() {
return (
<AppScreens />
);
}
}
const styles = StyleSheet.create({
stackNavHeaderTitle: {
color: '#00d373',
},
stackNavHeader: {
backgroundColor: '#081c24',
}
});