We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbe6eab commit c875271Copy full SHA for c875271
drop-down.android.ts
@@ -332,8 +332,10 @@ class DropDownAdapter extends android.widget.BaseAdapter implements android.widg
332
const label = view.getViewById<Label>(LABELVIEWID);
333
label.text = this.getItem(index);
334
335
- // Copy root styles to view
336
- label.style.color = owner.style.color;
+ // Copy root styles to view
+ if (owner.style.color) {
337
+ label.style.color = owner.style.color;
338
+ }
339
label.style.textDecoration = owner.style.textDecoration;
340
label.style.textAlignment = owner.style.textAlignment;
341
label.style.fontInternal = owner.style.fontInternal;
0 commit comments