SignInSignUpWordings constructor

SignInSignUpWordings({
  1. String cancelButtonText = 'Cancel',
  2. String signInTitle = 'Sign in to Archer',
  3. String signInButtonText = 'Sign in',
  4. String signInAppBarTitle = 'Sign in',
  5. String sendACodeButtonText = 'Send a code',
  6. String continueWithPassword = 'Continue with Password',
  7. String forgotPasswordButtonText = 'Forgot Password?',
  8. String firstName = 'First Name',
  9. String lastName = 'Last Name',
  10. String emailOrPhone = 'Email or Phone',
  11. String password = 'Password',
  12. String confirmPassword = 'Confirm Password',
  13. String forgotPassword = 'Forgot Password?',
  14. String continueWord = 'Continue',
  15. String errorMessageTextFieldEmpty = 'Please enter some text',
  16. String errorMessageTextFielEmailOrPhone = 'The Login is not in the correct format',
  17. String errorMessageTextFieldPassword = 'the password is not strong enough',
  18. String errorMessageTextFieldPasswordWeak = "Weak. Your password is unsafe, add more letters, special characters and numbers",
  19. String errorMessageTextFieldPasswordAverage = 'Average. Your password is not safe enough. Try to add more special characters and numbers',
  20. String errorMessageTextFieldPasswordStrong = 'Strong. Your password is safe!',
  21. String errorMessageTextFieldConfirmPassword = 'The passwords you have entered do not match',
  22. String checkCodeTitle = 'Enter the digit code:',
  23. String checkCodeSubtitle = 'Sent to ',
  24. String checkCodePhoneSubtitle = 'Texted to ',
  25. String apiErrorTokenMessage = 'Invalid Company Token',
  26. String resetPasswordTitle = "Reset password",
  27. String resetPasswordSubtitle = "We will send you a link to reset your password.",
  28. String resetPasswordButton = "Send link to reset password",
  29. String changePasswordTitle = "Create a new password",
  30. String changePasswordButton = "Save new password",
})

Implementation

SignInSignUpWordings({
  this.cancelButtonText = 'Cancel',
  this.signInTitle = 'Sign in to Archer',
  this.signInButtonText = 'Sign in',
  this.signInAppBarTitle = 'Sign in',
  this.sendACodeButtonText = 'Send a code',
  this.continueWithPassword = 'Continue with Password',
  this.forgotPasswordButtonText = 'Forgot Password?',
  this.firstName = 'First Name',
  this.lastName = 'Last Name',
  this.emailOrPhone = 'Email or Phone',
  this.password = 'Password',
  this.confirmPassword = 'Confirm Password',
  this.forgotPassword = 'Forgot Password?',
  this.continueWord = 'Continue',
  this.errorMessageTextFieldEmpty = 'Please enter some text',
  this.errorMessageTextFielEmailOrPhone =
      'The Login is not in the correct format',
  this.errorMessageTextFieldPassword = 'the password is not strong enough',
  this.errorMessageTextFieldPasswordWeak =
      "Weak. Your password is unsafe, add more letters, special characters and numbers",
  this.errorMessageTextFieldPasswordAverage =
      'Average. Your password is not safe enough. Try to add more special characters and numbers',
  this.errorMessageTextFieldPasswordStrong = 'Strong. Your password is safe!',
  this.errorMessageTextFieldConfirmPassword =
      'The passwords you have entered do not match',
  this.checkCodeTitle = 'Enter the digit code:',
  this.checkCodeSubtitle = 'Sent to ',
  this.checkCodePhoneSubtitle = 'Texted to ',
  this.apiErrorTokenMessage = 'Invalid Company Token',
  this.resetPasswordTitle = "Reset password",
  this.resetPasswordSubtitle =
      "We will send you a link to reset your password.",
  this.resetPasswordButton = "Send link to reset password",
  this.changePasswordTitle = "Create a new password",
  this.changePasswordButton = "Save new password",
});