Update Reanimated (#6126)

* Update Reanimated

* Fix types

* Fix Reanimated value access warnings

* Fix types
This commit is contained in:
dan
2024-11-05 22:27:36 +00:00
committed by GitHub
parent b0c5a37daa
commit 84fb1b7f97
10 changed files with 292 additions and 218 deletions
+8
View File
@@ -18,12 +18,20 @@ const stateContext = React.createContext<StateContext>({
addListener() {},
removeListener() {},
modify() {},
get() {
return 0
},
set() {},
},
footerMode: {
value: 0,
addListener() {},
removeListener() {},
modify() {},
get() {
return 0
},
set() {},
},
})
const setContext = React.createContext<SetContext>((_: boolean) => {})
+8
View File
@@ -12,12 +12,20 @@ const stateContext = React.createContext<StateContext>({
addListener() {},
removeListener() {},
modify() {},
get() {
return 0
},
set() {},
},
footerHeight: {
value: 0,
addListener() {},
removeListener() {},
modify() {},
get() {
return 0
},
set() {},
},
})