如何从离子2应用程序中删除启动画面? [重复]

问题描述 投票:0回答:1

这个问题在这里已有答案:

我使用离子2设计了应用程序。我不想在我的应用程序中使用闪屏。那么,如何删除它?

angular ionic2
1个回答
9
投票

根据离子2的最新版本:

  1. 删除插件ionic cordova plugin rm cordova-plugin-splashscreen
  2. 删除npm包npm uninstall --save @ionic-native/splash-screen
  3. 删除config.xml中有关splashScreen的首选项
  4. 将此行添加到config.xml <preference name="SplashScreen" value="none"/>
  5. 从app.module.ts“import and providers”中删除splashScreen
  6. 从app.component.ts中删除splashScreen
© www.soinside.com 2019 - 2024. All rights reserved.