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

This Flutter plugin offers a password strength indicator widget with 5 seperate conditions.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';

import 'screens/home_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 MaterialApp(
      title: 'Password Validation',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
          colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
          useMaterial3: true,
          textTheme: GoogleFonts.signikaTextTheme()),
      home: const MyHomePage(title: 'Create Your Password'),
    );
  }
}
3
likes
160
pub points
65%
popularity

Publisher

unverified uploader

This Flutter plugin offers a password strength indicator widget with 5 seperate conditions.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on password_strength_indicator_plus