Skip to content

Commit

Permalink
Fix NavBar height for Android
Browse files Browse the repository at this point in the history
  • Loading branch information
sarovin committed Apr 29, 2016
1 parent a857eec commit 355c03c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ const styles = StyleSheet.create({
fontWeight: '500',
color: '#0A0A0A',
position: 'absolute',
top: Platform.OS === 'ios' ? 20 : 0,
top: Platform.OS === 'ios' || Platform.Version > 19 ? 20 : 0,
left: 0,
right: 0,
},
header: {
backgroundColor: '#EFEFF2',
paddingTop: 0,
top: 0,
height: Platform.OS === 'ios' ? 64 : 44,
height: Platform.OS === 'ios' || Platform.Version > 19 ? 64 : 44,
right: 0,
left: 0,
borderBottomWidth: 0.5,
Expand Down

0 comments on commit 355c03c

Please sign in to comment.