-1

my problem is: is there a trick for change the StatusBar text color in Ionic 2 or 3? I have installed "cordova-plugin-statusbar" , I can change the background color but is not possible to change the text color.

Simone NoLogo
  • 31
  • 1
  • 3

2 Answers2

0

Please try with

color: black

In HTML if we need to change text color you need to right color property not background property.

Deb
  • 2,922
  • 1
  • 16
  • 32
Jatin Devani
  • 199
  • 1
  • 9
  • sorry, bat the Ionic plugin has not an html or css file; I tried with backgroundColorByHexString(hexString) for change the background and it works – Simone NoLogo Apr 26 '18 at 13:12
0

Please refer the plugin documentation. It have three function to change text color with background. I hope this may help.

StatusBar.styleLightContent(); //Light
StatusBar.styleBlackTranslucent(); //Black, translucent
StatusBar.styleBlackOpaque(); //Black, opaque
Prashant
  • 1,375
  • 2
  • 14
  • 22