From 82891016fa9e329f167c8b73ead631b0b209d080 Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 3 Dec 2024 14:42:44 -0800 Subject: [PATCH] fix config --- app.config.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app.config.js b/app.config.js index b957f44fff..d5f510544a 100644 --- a/app.config.js +++ b/app.config.js @@ -4,29 +4,29 @@ const SPLASH_CONFIG = { enableFullScreenImage_legacy: true, } +const DARK_SPLASH_CONFIG_IOS = { + backgroundColor: '#001429', + image: './assets/splash-dark.png', + resizeMode: 'cover', +} const SPLASH_CONFIG_IOS = { backgroundColor: '#ffffff', image: './assets/splash.png', resizeMode: 'cover', dark: DARK_SPLASH_CONFIG_IOS, } -const DARK_SPLASH_CONFIG_IOS = { - backgroundColor: '#001429', + +const DARK_SPLASH_CONFIG_ANDROID = { + backgroundColor: '#0f141b', image: './assets/splash-dark.png', resizeMode: 'cover', } - const SPLASH_CONFIG_ANDROID = { backgroundColor: '#0c7cff', image: './assets/splash.png', resizeMode: 'cover', dark: DARK_SPLASH_CONFIG_ANDROID, } -const DARK_SPLASH_CONFIG_ANDROID = { - backgroundColor: '#0f141b', - image: './assets/splash-dark.png', - resizeMode: 'cover', -} module.exports = function (config) { /**