Make shell hide/show animation smoother (#1683)
* Make shell hide/show animation smoother * Also animate "load latest"
This commit is contained in:
parent
c2a1cf4e56
commit
997918547c
3 changed files with 17 additions and 8 deletions
|
@ -24,13 +24,14 @@ export const FeedsTabBar = observer(function FeedsTabBarImpl(
|
|||
React.useEffect(() => {
|
||||
Animated.timing(interp, {
|
||||
toValue: store.shell.minimalShellMode ? 1 : 0,
|
||||
duration: 100,
|
||||
duration: 150,
|
||||
useNativeDriver: true,
|
||||
isInteraction: false,
|
||||
}).start()
|
||||
}, [interp, store.shell.minimalShellMode])
|
||||
const transform = {
|
||||
transform: [{translateY: Animated.multiply(interp, -100)}],
|
||||
opacity: Animated.subtract(1, interp),
|
||||
transform: [{translateY: Animated.multiply(interp, -50)}],
|
||||
}
|
||||
|
||||
const brandBlue = useColorSchemeStyle(s.brandBlue, s.blue3)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue