mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-01-11 20:10:25 +00:00
adjusted android bottom tab height
This commit is contained in:
parent
dc8c27dfc4
commit
be561c6d9f
1 changed files with 3 additions and 3 deletions
|
|
@ -692,7 +692,7 @@ const MainTabs = () => {
|
|||
bottom: 0,
|
||||
left: 0,
|
||||
right: 0,
|
||||
height: 85 + insets.bottom,
|
||||
height: Platform.OS === 'android' ? 70 + insets.bottom : 85 + insets.bottom,
|
||||
backgroundColor: 'transparent',
|
||||
overflow: 'hidden',
|
||||
}}>
|
||||
|
|
@ -742,8 +742,8 @@ const MainTabs = () => {
|
|||
<View
|
||||
style={{
|
||||
height: '100%',
|
||||
paddingBottom: 20 + insets.bottom,
|
||||
paddingTop: 12,
|
||||
paddingBottom: Platform.OS === 'android' ? 15 + insets.bottom : 20 + insets.bottom,
|
||||
paddingTop: Platform.OS === 'android' ? 8 : 12,
|
||||
backgroundColor: 'transparent',
|
||||
}}
|
||||
>
|
||||
|
|
|
|||
Loading…
Reference in a new issue