password_maker 0.0.2 copy "password_maker: ^0.0.2" to clipboard
password_maker: ^0.0.2 copied to clipboard

A new Flutter package for adding a Strong Password to login screen for users comfort.

Description #

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 #

Import the package

import 'package:password_maker/password_maker.dart';

Depend on it #

dependencies:
  password_maker: ^0.0.2

Usage #

Assign a String for Storing the generated Password, in this case 'temp',then call generatePassWord(length of the password).

 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();
  }

ScreenShots from Example App #

Alt text Alt text

Additional information #

Detailed explanation available in sample App Sample app named'login_sample', repository= https://github.com/josephjose1234/login_sample

0
likes
140
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package for adding a Strong Password to login screen for users comfort.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on password_maker