AuthUserStoryConfiguration constructor
const
AuthUserStoryConfiguration({ - LoginOptions loginOptionsBuilder(
- BuildContext context
)?,
- LoginServiceInterface loginServiceBuilder(
- BuildContext context
)?,
- String? afterLoginRoute,
- FutureOr<void> onLogin(
- String email,
- String password,
- BuildContext context
)?,
- Widget userBuilder(
- BuildContext context,
- Widget userPage
)?,
- RegistrationOptions registrationOptionsBuilder(
- BuildContext context
)?,
- FutureOr<void> onRequestForgotPassword(
- String email,
- BuildContext context
)?,
- FutureOr<void> onRegister(
- String email,
- String password,
- BuildContext context
)?,
- void onForgotPassword(
- String email,
- BuildContext context
)?,
- bool useRegistration = true,
- bool useForgotPassword = true,
- Widget? forgotPasswordDescription(
- BuildContext context
)?,
- Widget loginPageBuilder(
- BuildContext context,
- Widget loginWidget
)?,
- Widget registrationPageBuilder(
- BuildContext context,
- Widget registrationScreen
)?,
- Widget forgotPasswordBuilder(
- BuildContext context,
- Widget forgotPasswordPage
)?,
- Widget forgotPasswordTitle(
- BuildContext context
)?,
- WidgetBuilder? beforeRegistrationPage,
- WidgetBuilder? afterRegistrationPage,
- WidgetBuilder? pageOverlayBuilder,
- OnboardingConfiguration? onboardingConfiguration,
- Widget? onboardingScreen,
- bool useOnboarding = true,
- WidgetBuilder? afterLoginPage,
- Future<OnboardedUserMixin?> onGetLoggedInUser(
- BuildContext context
)?,
- bool canPopOnboarding = true,
- Color? loginErrorSnackbarBackgroundColor,
- TextStyle? loginErrorSnackbarTitleTextStyle,
- TextStyle? loginErrorSnackbarMessageTextStyle,
- bool useAfterRegistrationPage = true,
- RegistrationRepository? registrationRepository,
})
Implementation
const AuthUserStoryConfiguration({
this.loginOptionsBuilder,
this.loginServiceBuilder,
this.afterLoginRoute,
this.onLogin,
this.userBuilder,
this.registrationOptionsBuilder,
this.onRequestForgotPassword,
this.onRegister,
this.onForgotPassword,
this.useRegistration = true,
this.useForgotPassword = true,
this.forgotPasswordDescription,
this.loginPageBuilder,
this.registrationPageBuilder,
this.forgotPasswordBuilder,
this.forgotPasswordTitle,
this.beforeRegistrationPage,
this.afterRegistrationPage,
this.pageOverlayBuilder,
this.onboardingConfiguration,
this.onboardingScreen,
this.useOnboarding = true,
this.afterLoginPage,
this.onGetLoggedInUser,
this.canPopOnboarding = true,
this.loginErrorSnackbarBackgroundColor,
this.loginErrorSnackbarTitleTextStyle,
this.loginErrorSnackbarMessageTextStyle,
this.useAfterRegistrationPage = true,
this.registrationRepository,
});