ionic2 how to remove white space from status bar from top in iphone

佐手、 提交于 2020-01-24 01:27:12

问题


I am working on ionic 2 and here is my local set up as-

******************************************************
Your system information:

Cordova CLI: 6.4.0 
Ionic CLI Version: 2.1.8
Ionic App Lib Version: 2.1.4
ios-deploy version: Not installed
ios-sim version: 5.0.8 
OS: OS X Yosemite
Node Version: v6.2.2
Xcode version: Xcode 7.2 Build version 7C68
******************************************************

I wanted to remove white space from top in iphone, How I can?


回答1:


I am glad to say that I got my task done with this answer, I am really thankful for that. I came to see solution in this article.

  1. Open app.ts file and go to bottom
  2. Add this line of code as-

let config = {statusbarPadding: false};

as we have taken config as a variable, which we need to get load when app get read, so add this variable as-

ionicBootstrap(MyApp,null, config);

Now the final code will be like this-

let config = {statusbarPadding: false};
ionicBootstrap(MyApp,null, config);

This worked for me.



来源:https://stackoverflow.com/questions/41098323/ionic2-how-to-remove-white-space-from-status-bar-from-top-in-iphone

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!