hcmobile-sdk
Version:
mobile-sdk
36 lines (30 loc) • 1.06 kB
JavaScript
import { StackNavigator } from 'react-navigation';
import Controllers from './Controllers';
import Home from './components/Home';
const MainActivity = StackNavigator(
{
...Controllers,
MainHome: {
screen: Home,
navigationOptions: {
title:'HcMobile',
headerStyle: {backgroundColor:'red', justifyContent: 'center',elevation:0,shadowOpacity: 0},
headerTitleStyle: { color: 'white',alignSelf:'center'},
headerTintColor: 'white',
tabBarVisible: false,
headerBackTitle:null,
// header: false //hide header if not needed so whole screen slide
}
}
},
{
initialRouteName: 'MainHome',
mode: 'modal',
navigationOptions: {
headerStyle: {backgroundColor:'red', justifyContent: 'center',elevation:0,shadowOpacity: 0},
gesturesEnabled: false,
tabBarVisible: false,
},
}
);
export default MainActivity;