[TIMOB-26792] Android: Text cursor should change color according to text color
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | High |
| Status | Closed |
| Resolution | Invalid |
| Resolution Date | 2019-02-01T19:25:56.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | Release 8.0.1 |
| Components | Android |
| Labels | n/a |
| Reporter | Gary Mathews |
| Assignee | Gary Mathews |
| Created | 2019-02-01T19:01:10.000+0000 |
| Updated | 2019-02-01T19:25:56.000+0000 |
Description
- The text cursor maintains the color set by the parent theme, this can cause the cursor to disappear light backgrounds. The cursor should match the font color.
const win = Ti.UI.createWindow({ backgroundColor: 'white' });
const textArea = Ti.UI.createTextArea({ color: 'black' });
win.add(textArea);
win.open();
master: https://github.com/appcelerator/titanium_mobile/pull/10671
Closing ticket, this is not the best way to address this issue. The developer should amend their theming to resolve this issue.