resolve method Null safety

Color? resolve(
  1. 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;
}