RN-191 Channel drawer IOS UI fixes (#641)

This commit is contained in:
enahum 2017-06-19 09:11:32 -04:00 committed by GitHub
parent 426bd8abb0
commit dafe0ba7a8

View file

@ -226,7 +226,7 @@ class ChannelsList extends Component {
return (
<View
style={styles.container}
style={[styles.container, styles.extraPadding]}
>
<View style={styles.statusBar}>
<View style={styles.headerContainer}>
@ -248,6 +248,13 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => {
backgroundColor: theme.sidebarBg,
flex: 1
},
extraPadding: {
...Platform.select({
ios: {
paddingBottom: 10
}
})
},
statusBar: {
backgroundColor: theme.sidebarHeaderBg,
...Platform.select({