getProgressIndicatorColor method

  1. @override
Color? getProgressIndicatorColor()

Returns the color of the ProgressIndicators.

Implementation

@override
Color? getProgressIndicatorColor() {
  if (style.buttonType == AuthButtonType.secondary) {
    return AuthColors.facebook;
  }
  if (style.buttonType != AuthButtonType.secondary &&
      style.iconType == null) {
    return Colors.white;
  }
  return AuthColors.facebook;
}