password_strength_indicator 1.0.0 copy "password_strength_indicator: ^1.0.0" to clipboard
password_strength_indicator: ^1.0.0 copied to clipboard

A Flutter package to visually assess the strength of a password using a customizable strength bar.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'pages/form_page.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Password Strength Indicator Demo',
      home: FormPage(),
    );
  }
}
10
likes
0
pub points
82%
popularity

Publisher

unverified uploader

A Flutter package to visually assess the strength of a password using a customizable strength bar.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on password_strength_indicator