diff --git a/assets/icon-android-background.png b/assets/icon-android-background.png index c558a99d..d6027131 100644 Binary files a/assets/icon-android-background.png and b/assets/icon-android-background.png differ diff --git a/assets/icon.png b/assets/icon.png index 5a8a1be5..5d8ae67d 100644 Binary files a/assets/icon.png and b/assets/icon.png differ diff --git a/src/Splash.tsx b/src/Splash.tsx index e33fcc3c..ead8e0f0 100644 --- a/src/Splash.tsx +++ b/src/Splash.tsx @@ -79,7 +79,7 @@ export function Splash(props: React.PropsWithChildren) { scale: interpolate(outroApp.value, [0, 1], [1.1, 1], 'clamp'), }, ], - opacity: interpolate(outroApp.value, [0, 0.7, 1], [0, 1, 1], 'clamp'), + opacity: interpolate(outroApp.value, [0, 0.9, 1], [0, 1, 1], 'clamp'), } }) @@ -92,21 +92,21 @@ export function Splash(props: React.PropsWithChildren) { intro.value = withTiming( 1, - {duration: 800, easing: Easing.out(Easing.cubic)}, + {duration: 200, easing: Easing.out(Easing.cubic)}, async () => { // set these values to check animation at specific point // outroLogo.value = 0.1 // outroApp.value = 0.1 outroLogo.value = withTiming( 1, - {duration: 1200, easing: Easing.in(Easing.cubic)}, + {duration: 1000, easing: Easing.in(Easing.cubic)}, () => { runOnJS(onFinish)() }, ) outroApp.value = withTiming( 1, - {duration: 1200, easing: Easing.inOut(Easing.cubic)}, + {duration: 1000, easing: Easing.inOut(Easing.cubic)}, () => { runOnJS(onFinish)() },