Bluesky app fork with some witchin' additions 💫

[Lightbox] Make the animation faster (#6382)

* [Lightbox] Make the animation faster

* Make it faster on Android too

authored by danabra.mov and committed by

GitHub 18aaa19b 05312cce

+2 -2
+2 -2
src/view/com/lightbox/ImageViewing/index.tsx
··· 64 64 : (['left', 'right'] satisfies Edge[]) // iOS, so no top/bottom safe area 65 65 66 66 const SLOW_SPRING: WithSpringConfig = { 67 - mass: isIOS ? 1.5 : 1, 67 + mass: isIOS ? 1.25 : 0.75, 68 68 damping: 300, 69 69 stiffness: 800, 70 70 restDisplacementThreshold: 0.01, 71 71 } 72 72 const FAST_SPRING: WithSpringConfig = { 73 - mass: isIOS ? 1.5 : 1, 73 + mass: isIOS ? 1.25 : 0.75, 74 74 damping: 150, 75 75 stiffness: 900, 76 76 restDisplacementThreshold: 0.01,