diff --git a/src/NavBar.js b/src/NavBar.js index 2b555c7ad..e36cb20e0 100644 --- a/src/NavBar.js +++ b/src/NavBar.js @@ -42,9 +42,13 @@ import _backButtonImage from './back_chevron.png'; const styles = StyleSheet.create({ title: { textAlign: 'center', - marginTop: 10, - fontSize: 18, color: '#0A0A0A', + fontSize: 18, + width: 180, + alignSelf: 'center' + }, + titleWrapper: { + marginTop: 10, position: 'absolute', ...Platform.select({ ios: { @@ -76,7 +80,7 @@ const styles = StyleSheet.create({ position: 'absolute', }, backButton: { - width: 130, + width: 100, height: 37, position: 'absolute', ...Platform.select({ @@ -413,32 +417,35 @@ class NavBar extends React.Component { title = title(childState); } return ( - - {title} - + + + {title} + + ); }