From 7a55ca613347680cd94add01faa5dc3f216b9bd2 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 9 Nov 2023 20:15:05 +0000 Subject: Sync top/bottom bar disappearance to the scroll (#1855) * Disable existing code that toggles shell * Make shell mode a float * Translate based on the gesture * Track header and footer heights * Add web support * Fix types and cleanup * Add back isScrolled logic * Add comments --- src/state/shell/minimal-mode.tsx | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'src/state/shell/minimal-mode.tsx') diff --git a/src/state/shell/minimal-mode.tsx b/src/state/shell/minimal-mode.tsx index b506c21db..2c2f60b52 100644 --- a/src/state/shell/minimal-mode.tsx +++ b/src/state/shell/minimal-mode.tsx @@ -1,11 +1,16 @@ import React from 'react' -import {useSharedValue, SharedValue} from 'react-native-reanimated' +import { + Easing, + SharedValue, + useSharedValue, + withTiming, +} from 'react-native-reanimated' -type StateContext = SharedValue +type StateContext = SharedValue type SetContext = (v: boolean) => void const stateContext = React.createContext({ - value: false, + value: 0, addListener() {}, removeListener() {}, modify() {}, @@ -13,10 +18,14 @@ const stateContext = React.createContext({ const setContext = React.createContext((_: boolean) => {}) export function Provider({children}: React.PropsWithChildren<{}>) { - const mode = useSharedValue(false) + const mode = useSharedValue(0) const setMode = React.useCallback( (v: boolean) => { - mode.value = v + 'worklet' + mode.value = withTiming(v ? 1 : 0, { + duration: 400, + easing: Easing.bezier(0.25, 0.1, 0.25, 1), + }) }, [mode], ) -- cgit 1.4.1