-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
41 lines (39 loc) · 1.1 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
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import HomeScreen from "./screens/HomeScreen";
import MovieScreen from "./screens/MovieScreen";
import SearchScreen from "./screens/SearchScreen";
const Stack = createNativeStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator
screenOptions={{
headerStyle: {
backgroundColor: "#1B1122",
},
headerTintColor: "#fff",
headerTitleStyle: {
fontWeight: "bold",
},
}}
>
<Stack.Screen
name="Home"
component={HomeScreen}
options={{ headerTitle: "MOVIE APP" }}
/>
<Stack.Screen
name="Movies"
component={MovieScreen}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Search"
component={SearchScreen}
options={{ headerTitle: "Search" }}
/>
</Stack.Navigator>
</NavigationContainer>
);
}