Yes, I'm using Expo SDK 48.0.0 & works on Expo Go
Everything explained here is available on Expo Documentation.
First you'll need to make changes in your 'app.json' file.
If you've configured your app with a Splash Screen
{
"expo": {
"splash": {
"image": "...",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
}
}
}
Change it to this
{
"expo": {
"android": {
"splash": {
"image": "...",
"resizeMode": "cover",
"backgroundColor": "#ffffff",
"dark": {
"image": "...",
"resizeMode": "cover",
"backgroundColor": "#000000"
}
}
},
"ios": {
"splash": {
"image": "...",
"resizeMode": "cover",
"backgroundColor": "#ffffff",
"dark": {
"image": "...",
"resizeMode": "cover",
"backgroundColor": "#000000"
}
}
}
}
}