Prepare onboarding flow for personalisation screens.

Add a BuildSetting to control the display of the personalisation screens.
Add a property to delay the AuthenticationCoordinator from showing any screens.
Add Congratulations screen to onboarding flow.
This commit is contained in:
Doug
2022-02-24 17:24:04 +00:00
parent 01b5b2129d
commit dcca446664
23 changed files with 642 additions and 91 deletions
@@ -25,7 +25,7 @@ extern NSString *const MXKAuthErrorDomain;
/**
Authentication types
*/
typedef enum {
typedef NS_ENUM(NSUInteger, MXKAuthenticationType) {
/**
Type used to sign up.
*/
@@ -39,7 +39,7 @@ typedef enum {
*/
MXKAuthenticationTypeForgotPassword
} MXKAuthenticationType;
};
@class MXKAuthInputsView;