Skip to content

Commit

Permalink
Merge pull request #141 from Reveille-Rides/bwees/dark-mode-splashscreen
Browse files Browse the repository at this point in the history
dark mode spashscreen
  • Loading branch information
bwees authored Feb 18, 2024
2 parents 1d1fef3 + 4c934d3 commit 03780ae
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,36 @@
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"scheme": "myapp",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.bwees.reveille-rides"
"bundleIdentifier": "com.bwees.reveille-rides",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#fbffff",
"dark": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#191919"
}
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#fbffff",
"dark": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#191919"
}
},
"package": "com.anonymous.reactnativeboilerplate"
},
"web": {
Expand Down
Binary file modified assets/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 03780ae

Please sign in to comment.