Skip to content

Commit

Permalink
fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok committed Dec 3, 2024
1 parent 67c7204 commit 8289101
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
/**
Expand Down

0 comments on commit 8289101

Please sign in to comment.