📜  如何在启动屏幕离子 4 后删除白屏 - 任何代码示例

📅  最后修改于: 2022-03-11 14:54:58.800000             🧑  作者: Mango

代码示例1
this.platform.ready().then(async () => {
     setTimeout(()=>{
        SplashScreen.hide({
          fadeOutDuration: 1000
        });
      }, 2000)
})