Skip to content

Commit

Permalink
Merge pull request #598 from Kerumen/fix-navbar-height
Browse files Browse the repository at this point in the history
Fix NavBar height for Android
  • Loading branch information
aksonov committed Apr 27, 2016
2 parents bbf1db3 + fac8603 commit 4bae5dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-router-flux",
"version": "3.22.21",
"version": "3.22.22",
"description": "React Native Router using Flux architecture",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/NavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,15 +194,15 @@ const styles = StyleSheet.create({
fontWeight: '500',
color: '#0A0A0A',
position: 'absolute',
top: 20,
top: Platform.OS === 'ios' ? 20 : 0,
left: 0,
right: 0,
},
header: {
backgroundColor: '#EFEFF2',
paddingTop: 0,
top: 0,
height: 64,
height: Platform.OS === 'ios' ? 64 : 44,
right: 0,
left: 0,
borderBottomWidth: 0.5,
Expand Down

0 comments on commit 4bae5dc

Please sign in to comment.