问题
How can we disable the splash screen on an Ionic App? I am using Ionic 4, Capacitor and React. I have tried to add this on capacitor.config.json
{
"plugins": {
"SplashScreen": {
"launchShowDuration": 0
}
}
}
The above code is not working at all.
回答1:
You can hide the splash screen using the SplashScreen
plugin :
import { Plugins } from '@capacitor/core';
const { SplashScreen } = Plugins;
function useSplashHide(){
useEffect(() => {
SplashScreen.hide();
}, []);
}
Documentation is here
回答2:
You can just add below line in config.xml
<preference name="SplashScreenDelay" value="0"/>
来源:https://stackoverflow.com/questions/60238935/hide-splash-screen-in-ionic-capacitor-react