Hello!
We are developing an app using cordova.plugin-dialogs, on iOS works fine, but on Android the input text has white color, like the background, so we are unable to see what we write, has anyone face this issue already?
Thanks!
Hello!
We are developing an app using cordova.plugin-dialogs, on iOS works fine, but on Android the input text has white color, like the background, so we are unable to see what we write, has anyone face this issue already?
Thanks!
Hmmm I’ve never seen this before. Would you be able to share a screen shot and some code?
You can see two images as well, my current workaround is to use the dark theme which changes the background color, but it breaks current android style
look for this file
platforms/android/src/org/apache/cordova/dialogs/Notification.java
then change promptInput.setHintTextColor(0xff444444);
to //promptInput.setHintTextColor(0xff444444);
then add this line
promptInput.setTextColor(0xff444444);
There is no line with setHintTextColor()
Anyhow I added promptInput.setTextColor(0xff444444);
to Notification::prompt()
It works. Thanks.