getProgressIndicatorColor method

  1. @override
Color? getProgressIndicatorColor()

Returns the color of the ProgressIndicators.

Implementation

@override
Color? getProgressIndicatorColor() {
  if (style.buttonType == AuthButtonType.secondary) return Colors.blue;
  return Colors.blue[200];
}