underlineColor property
Color
get
underlineColor
Implementation
Color get underlineColor {
if (errorState is TextInputError) {
return wippyRed500;
}
if (focusState is TextInputFocusin) {
return wippyGray600;
}
return wippyGray300;
}