-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
32 lines (24 loc) · 687 Bytes
/
App.js
File metadata and controls
32 lines (24 loc) · 687 Bytes
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
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { TabNavigator } from 'react-navigation';
import HomeScreen from './src/screens/home';
import StoryScreen from './src/screens/story';
import ProfileScreen from './src/screens/profile';
const App = TabNavigator({
Tab1: {screen: HomeScreen},
Tab2: {screen: StoryScreen},
Tab3: {screen: ProfileScreen}
},{
tabBarPosition: 'bottom',
swipeEnabled: false,
showIcon: true,
tabBarOptions: {
activeTintColor: '#1A237E',
inactiveTintColor: '#424ebf',
indicatorStyle: {backgroundColor:'#424ebf'},
style: {
backgroundColor: 'white'
}
}
});
export default App;