Customization
Example
let flowTheme = AuthenteqFlow.instance.theme
flowTheme.primaryColor = .blue
flowTheme.textColor = .black
flowTheme.screenBackgroundColor = .white
flowTheme.viewBackgroundHightlightColor = .lightGray
flowTheme.selectedButtonTextColor = .black
flowTheme.selectedButtonBackgroundColor = .whiteAuthenteqFlowTheme *theme = [[AuthenteqFlow instance] theme];
[theme setPrimaryColor: [UIColor blueColor]];
[theme setTextColor: [UIColor blackColor]];
[theme setScreenBackgroundColor: [UIColor whiteColor]];
[theme setViewBackgroundHightlightColor: [UIColor lightGrayColor]];
[theme setSelectedButtonTextColor: [UIColor blackColor]];
[theme setSelectedButtonBackgroundColor: [UIColor whiteColor]];Elements Description
Last updated
Was this helpful?