File with heading

A package that helps to suggest a strong password at login screen when a new user sign up.

Features

you can specify the length of the password

Getting started

  1. Import the package
  2. Assign a String Variable that you are using for password with =temp=generatePassWord(10);
  3. Don't forget to refer the example for details.

Usage

can be used to create String passwords for users when they sign up

 late String temp; //initializing a temporary (temp) String
  @override
  void initState() {
    super.initState();
    temp=generatePassWord(10);//assigning the temp with generatePassword(10), where 10 is the length of the password, 
    //assigning the temp to the Password controller
    _PasswordController = TextEditingController(text: temp);
  }

//disposing the controllers
  @override
  void dispose() {
    _PasswordController.dispose();
    super.dispose();
  }

Additional information

Detailed explanation available in sample App

Libraries

password_maker