getProgressIndicatorColor method

  1. @override
Color? getProgressIndicatorColor()

Returns the color of the ProgressIndicators.

Implementation

@override
Color? getProgressIndicatorColor() {
  if (style.buttonType == AuthButtonType.secondary) {
    return isDark ? const Color(0xff6d7c8b) : AuthColors.github;
  }
  return const Color(0xff6d7c8b);
}