-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathApp.js
45 lines (42 loc) · 1.22 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
import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import Home from './src/home'
import Playground from './src/playground';
import { ThemeProvider } from 'styled-components';
const Stack = createStackNavigator();
const theme = {
colors: {
dark: '#050505',
light: '#F5F1E3',
button: '#1B9AAA',
textLight: '#FFFFFF',
textDark: '#4E598C',
input: '#DDDBCB',
}
}
export default App = () =>
<ThemeProvider theme={theme}>
<NavigationContainer>
<Stack.Navigator
screenOptions={{
cardStyle: { backgroundColor: theme.colors.dark }
}}>
<Stack.Screen
name="Styled Components"
component={Home}
options={{
headerTintColor: theme.colors.textLight,
headerStyle: { backgroundColor: theme.colors.dark }
}}
/>
<Stack.Screen
name="Playground"
component={Playground}
options={{
headerTintColor: theme.colors.textLight,
headerStyle: { backgroundColor: theme.colors.dark }
}} />
</Stack.Navigator>
</NavigationContainer>
</ThemeProvider>