"native-base": "^2.1.3",
"react": "16.0.0-alpha.6",
"react-native": "0.44.0",
Here is my code
// Topbar.js
import React, { Component } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { DrawerNavigator } from 'react-navigation';
import {
Container,
Header,
Left,
Right,
Button,
Icon,
Body,
Title,
} from 'native-base';
import getTheme from '../../../native-base-theme/components';
import commonColor from '../../../native-base-theme/variables/commonColor';
import { StyleProvider } from 'native-base';
class TopBar extends Component {
state = {};
render() {
return (
<StyleProvider style={getTheme(commonColor)}>
<Header>
<Left><Button transparent><Icon name="menu" /></Button></Left>
<Body><Title>Title</Title></Body>
<Right><Button transparent><Icon name="menu" /></Button></Right>
</Header>
</StyleProvider>
);
}
}
export default TopBar;
//App.js
import React, { Component } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import SplashScreen from 'react-native-splash-screen';
import { DrawerNavigator } from 'react-navigation';
import { Container, Content, Footer, FooterTab } from 'native-base';
import { TopBar } from './components';
import getTheme from '../native-base-theme/components';
import platform from '../native-base-theme/variables/platform';
import { StyleProvider } from 'native-base';
class App extends Component {
state = {};
componentDidMount() {
SplashScreen.hide();
}
render() {
return (
<StyleProvider style={getTheme(platform)}>
<Container>
<TopBar title="Ziggy" />
<Content>
<Text>
Welcome to Ziggy Page!
</Text>
</Content>
<Footer>
<FooterTab>
<Text>Person</Text>
</FooterTab>
</Footer>
</Container>
</StyleProvider>
);
}
}
export default App;
Result

@stefensuhat NativeBase follows Android and iOS guidelines. Thus the title is on the left of the header. If you want it to be in the center, apply flex: 1 to <Left>, <Body> and <Right>
I try this ,it works for me
thanks
@wikieswan : thanks bro, works like a charm
NativeBase follows Android and iOS guidelines. Thus the title is on the left of the header.
Apple HIG shows a centered title in the nav bar.

Most helpful comment
@stefensuhat NativeBase follows Android and iOS guidelines. Thus the title is on the left of the header. If you want it to be in the center, apply
flex: 1to<Left>,<Body>and<Right>