mirror of
https://github.com/balzack/databag.git
synced 2025-02-11 19:19:16 +00:00
setting status bar color
This commit is contained in:
parent
5f7483c17b
commit
4e380a8e05
@ -2,6 +2,7 @@ import { Appearance } from 'react-native'
|
||||
|
||||
const LightColors = {
|
||||
overlay: 'dark',
|
||||
statusBar: 'dark-content',
|
||||
tabBar: '#448866',
|
||||
activeTabIcon: '#ffffff',
|
||||
idleTabIcon: '#cccccc',
|
||||
@ -53,6 +54,7 @@ const LightColors = {
|
||||
|
||||
const DarkColors = {
|
||||
overlay: 'dark',
|
||||
statusBar: 'light-content',
|
||||
tabBar: '#111111',
|
||||
activeTabIcon: '#dddddd',
|
||||
idleTabIcon: '#aaaaaa',
|
||||
|
@ -469,7 +469,7 @@ export function Session({ sharing, clearSharing }) {
|
||||
<Tab.Screen name="Settings" component={SettingsStackScreen} />
|
||||
</Tab.Navigator>
|
||||
)}
|
||||
<StatusBar barStyle="dark-content" backgroundColor={Colors.formBackground} />
|
||||
<StatusBar barStyle={Colors.statusBar} backgroundColor={Colors.screenBase} />
|
||||
</View>
|
||||
)}
|
||||
</View>
|
||||
|
Loading…
Reference in New Issue
Block a user