gpassword 0.0.1 copy "gpassword: ^0.0.1" to clipboard
gpassword: ^0.0.1 copied to clipboard

Password Generator Flutter Package

Password Generator Flutter Package .

Features #

Random password generator .

Getting started #

This will add a line like this to your package's pubspec.yaml ( run an implicit dart pub get ) :

dependencies:
  gpassword:
    git: https://github.com/arminmehraeen/GPassword.git
import 'package:gpassword/gpassword.dart';

Usage #

GPassword gPassword = GPassword();

List<String> passwords = gPassword.generateList();
String password = gPassword.generate(passwordLength: 8);
// Minimum eight characters, at least one uppercase letter, one lowercase letter, one number and one special character:
bool passwordStatus = gPassword.passwordIsSecure(password: password);
String encryptPassword = gPassword.encryptPassword(password: password);

Additional information #

Support this package by star it ❤️‍🔥

3
likes
130
pub points
57%
popularity

Publisher

unverified uploader

Password Generator Flutter Package

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

crypto, flutter

More

Packages that depend on gpassword