resolve method Null safety
- Set<
MaterialState> states
override
Returns a value of type T that depends on states.
Widgets like TextButton and ElevatedButton apply this method to their current MaterialStates to compute colors and other visual parameters at build time.
Implementation
@override
Color? resolve(Set<MaterialState> states) {
if (states.contains(MaterialState.disabled)) {
return onSurface?.withOpacity(0.38);
}
return onPrimary;
}