ionic-v1 ios statusbar text color 변경

ios status bar text color 값 변경하기

www\js\app.js 파일에서 아래 코드를 추가 하고 원하는 컬러값을 지정해주면 된다.

1
2
3
4
5
6
7
8
9
10
11
12
www\js\app.js
app.run(function ($ionicPlatform, $cordovaStatusbar) {

$ionicPlatform.ready(function () {
// Color the iOS status bar
if (window.StatusBar) {
// $cordovaStatusbar.overlaysWebView(true);
$cordovaStatusbar.styleHex('#fff'); #텍스트 컬러값 변경
}
});

});

ios 상태바 텍스트 컬러값 변경

참조

공유하기