RN-191 Channel drawer IOS UI fixes (#641)
This commit is contained in:
parent
426bd8abb0
commit
dafe0ba7a8
1 changed files with 8 additions and 1 deletions
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Reference in a new issue