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
49
50
|
import React from 'react'
import {type SharedValue, useSharedValue} from 'react-native-reanimated'
type StateContext = {
headerHeight: SharedValue<number>
footerHeight: SharedValue<number>
}
const stateContext = React.createContext<StateContext>({
headerHeight: {
value: 0,
addListener() {},
removeListener() {},
modify() {},
get() {
return 0
},
set() {},
},
footerHeight: {
value: 0,
addListener() {},
removeListener() {},
modify() {},
get() {
return 0
},
set() {},
},
})
stateContext.displayName = 'ShellLayoutContext'
export function Provider({children}: React.PropsWithChildren<{}>) {
const headerHeight = useSharedValue(0)
const footerHeight = useSharedValue(0)
const value = React.useMemo(
() => ({
headerHeight,
footerHeight,
}),
[headerHeight, footerHeight],
)
return <stateContext.Provider value={value}>{children}</stateContext.Provider>
}
export function useShellLayout() {
return React.useContext(stateContext)
}
|