'How to change status bar color of Angular app(Cordova - android)

Status bar color should be same like current page background color. It should be dynamic. I tried using cordova plugin but I'm not able to set different color for different pages.



Solution 1:[1]

You can definitely try to use [ngStyle] in your Angular for this depending on a condition you have, for example:

<div class="status-bar" [ngStyle]={'background-color': status === 'online' ? 'green' : 'red'}></div>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Aaron