Use secondary colour from the theme for authenticationActivityIndicator.

This allows the indicator to be seen when using a dark theme.
This commit is contained in:
Doug 2021-06-28 16:38:54 +01:00
parent 5bb59b3b5b
commit 36c15387e8

View file

@ -239,6 +239,7 @@ static const CGFloat kAuthInputContainerViewMinHeightConstraintConstant = 150.0;
self.submitButton.backgroundColor = ThemeService.shared.theme.tintColor;
self.skipButton.backgroundColor = ThemeService.shared.theme.tintColor;
self.authenticationActivityIndicator.color = ThemeService.shared.theme.textSecondaryColor;
self.noFlowLabel.textColor = ThemeService.shared.theme.warningColor;
NSMutableAttributedString *forgotPasswordTitle = [[NSMutableAttributedString alloc] initWithString:NSLocalizedStringFromTable(@"auth_forgot_password", @"Vector", nil)];