You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
helperText and underline gets warningColor paint; I expected that calling setErrorColor would change also icons color but my icon always become red.
Changing onDraw method on line 1279 could resolve my issue?
From paint.setAlpha(255);
To paint.setColor(isInternalValid() ? primaryColor : errorColor);
The text was updated successfully, but these errors were encountered:
When I call
helperText and underline gets warningColor paint; I expected that calling setErrorColor would change also icons color but my icon always become red.
Changing onDraw method on line 1279 could resolve my issue?
From
paint.setAlpha(255);
To
paint.setColor(isInternalValid() ? primaryColor : errorColor);
The text was updated successfully, but these errors were encountered: