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
It would be really nice if we could make the components be actual instances, one per element, instead of classes containing a bunch of static methods. We could start this refactoring by taking a look at PasswordRevealIndicator, since that needs a little TLC anyway, and it wouldn't cause a break in the hierarchy chain.
I think what we should do is have every component derive from a superclass, Component, so that we can control some of this common behavior in a polymorphic way.
The text was updated successfully, but these errors were encountered:
It would be really nice if we could make the components be actual instances, one per element, instead of classes containing a bunch of static methods. We could start this refactoring by taking a look at
PasswordRevealIndicator
, since that needs a little TLC anyway, and it wouldn't cause a break in the hierarchy chain.I think what we should do is have every component derive from a superclass,
Component
, so that we can control some of this common behavior in a polymorphic way.The text was updated successfully, but these errors were encountered: