Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Tweaks (#2225)

* Gradient

* Tweak animation speed

* Rotate

* Linear

* Linear

authored by

Eric Bailey and committed by
GitHub
25f0527a aac13aaf

+4 -4
assets/icon-android-background.png

This is a binary file and will not be displayed.

assets/icon.png

This is a binary file and will not be displayed.

+4 -4
src/Splash.tsx
··· 79 79 scale: interpolate(outroApp.value, [0, 1], [1.1, 1], 'clamp'), 80 80 }, 81 81 ], 82 - opacity: interpolate(outroApp.value, [0, 0.7, 1], [0, 1, 1], 'clamp'), 82 + opacity: interpolate(outroApp.value, [0, 0.9, 1], [0, 1, 1], 'clamp'), 83 83 } 84 84 }) 85 85 ··· 92 92 93 93 intro.value = withTiming( 94 94 1, 95 - {duration: 800, easing: Easing.out(Easing.cubic)}, 95 + {duration: 200, easing: Easing.out(Easing.cubic)}, 96 96 async () => { 97 97 // set these values to check animation at specific point 98 98 // outroLogo.value = 0.1 99 99 // outroApp.value = 0.1 100 100 outroLogo.value = withTiming( 101 101 1, 102 - {duration: 1200, easing: Easing.in(Easing.cubic)}, 102 + {duration: 1000, easing: Easing.in(Easing.cubic)}, 103 103 () => { 104 104 runOnJS(onFinish)() 105 105 }, 106 106 ) 107 107 outroApp.value = withTiming( 108 108 1, 109 - {duration: 1200, easing: Easing.inOut(Easing.cubic)}, 109 + {duration: 1000, easing: Easing.inOut(Easing.cubic)}, 110 110 () => { 111 111 runOnJS(onFinish)() 112 112 },