Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { StyleSheet } from 'react-native';
import { DefaultTheme, DarkTheme } from '@react-navigation/native';
import { themes } from '../../constants/colors';
export * from './animations';
export const defaultHeader = {
headerBackTitleVisible: false,
cardOverlayEnabled: true,
cardStyle: { backgroundColor: 'transparent' }
};
export const cardStyle = {
backgroundColor: 'rgba(0,0,0,0)'
};
export const borderBottom = theme => ({
borderBottomWidth: StyleSheet.hairlineWidth,
borderBottomColor: themes[theme].headerBorder,
elevation: 0
});
export const themedHeader = theme => ({
headerStyle: {
...borderBottom(theme),
backgroundColor: themes[theme].headerBackground
},
headerTintColor: themes[theme].headerTintColor,
headerTitleStyle: { color: themes[theme].headerTitleColor }
});
export const navigationTheme = (theme) => {
const defaultNavTheme = theme === 'light' ? DefaultTheme : DarkTheme;
return {
...defaultNavTheme,
colors: {
...defaultNavTheme.colors,
background: themes[theme].backgroundColor,
border: themes[theme].borderColor
}
};
};
// Gets the current screen from navigation state
export const getActiveRoute = (state) => {
const route = state?.routes[state?.index];
if (route?.state) {
// Dive into nested navigators
return getActiveRoute(route.state);
}
return route;
};
export const getActiveRouteName = state => getActiveRoute(state)?.name;