Skip to content

Commit

Permalink
fix(suite-native): configure splash screen for dark theme v2
Browse files Browse the repository at this point in the history
  • Loading branch information
yanascz committed Dec 10, 2024
1 parent 2d7eb04 commit ad1db83
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions suite-native/app/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,12 @@ const getPlugins = (): ExpoPlugins => {
[
'expo-splash-screen',
{
backgroundColor: '#25292E',
backgroundColor: '#909',
image: './assets/splash_icon.png',
dark: {
backgroundColor: '#25292E',
backgroundColor: '#090',
image: './assets/splash_icon.png',
},
image: './assets/splash_icon.png',
imageWidth: '200',
},
],
Expand Down Expand Up @@ -172,7 +173,7 @@ export default ({ config }: ConfigContext): ExpoConfig => {
slug: appSlugs[buildType],
owner: appOwners[buildType],
version: suiteNativeVersion,
runtimeVersion: '18',
runtimeVersion: '19',
...(buildType === 'production'
? {}
: {
Expand Down

0 comments on commit ad1db83

Please sign in to comment.