On native textfields and boxes the color of placeholders are hardcoded in corona core:
[super setText:\_placeholder]; [self setTextColor:[UIColor lightGrayColor]]; \_showingPlaceholder = true;
In my app I use black text on white backgrounds, so when switching to dark mode the placeholders can’t be seen because the text color is the same as the background color. (I do not intend to create a full dark mode version of the app)
Please fix it. Thanks.