hsunny study blog

[IONIC] iPhone이 다크모드일 때 status bar 내 글자가 보이지 않는 문제 본문

programming/IONIC

[IONIC] iPhone이 다크모드일 때 status bar 내 글자가 보이지 않는 문제

헤써니 2021. 8. 30. 23:17

현상

iOS 다크모드를 킨 채로 앱을 실행  

홈화면에서 status bar 위치의 배경의 흰색(#ffffff)이라 status bar 의 글자가 같은 색상(#ffffff)이라 보이지 않음

 

추가정보

-

해결방법

다크모드 해제하기

 

config.xml 에 아래 코드 추가하기

<platform name="ios">
    ...
    <config-file parent="UIUserInterfaceStyle" platform="ios" target="*-Info.plist">
        <string>Light</string>
    </config-file>
    ...
</platform>

 

참고사이트