layout property

  1. @override
AuthStepLayout get layout
override

Layout defaults for this step.

Implementation

@override
AuthStepLayout get layout => AuthStepLayout(
  title: 'Create your account',
  subtitle: 'Do you already have an account? [Log in]',
  actionLabel: 'Create account',
  subtitleOnTap: (_, _) => ref.goToAuthStep(AuthStep.emailAndPassword),
  crossAxisAlignment: CrossAxisAlignment.start,
  mainAxisAlignment: MainAxisAlignment.start,
  textAlign: TextAlign.start,
);