Skip to content

zweidenker/password_rule_check

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PasswordRuleCheck

Pub pub points Build

A Flutter Widget to show if a Password matches a specific Rule Set

Supported Checks

  • minimum Length
  • maximum Length
  • minimum number of uppercase Letters
  • minimum number of lowercase Letters
  • minimum number of digits
  • minimum number of special characters

Localizations

Supported Languages:

  • English 🇺🇸🇬🇧
  • German 🇩🇪
  • Portuguese 🇵🇹

Feel free to add a new language via a Pull Request Alternatively you can specify custom translations/texts by passing in a custom PasswordRuleCheckTranslation

class MyCustomTranslation extends PasswordRuleCheckTranslation {
  // Override for your custom Translations
}

PasswordRuleCheck(
  ruleSet: RuleSet(),
  translation: MyCustomTranslation(),
);