flutter_password_strength 0.1.6 copy "flutter_password_strength: ^0.1.6" to clipboard
flutter_password_strength: ^0.1.6 copied to clipboard

A password strength checker for flutter, works for Android and iOS.

example/lib/main.dart

import 'package:flutter/material.dart';
import './component/sign_in_form.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Password Strength Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Password Strength Demo'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, this.title}) : super(key: key);

  final String? title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title!),
      ),
      body: Center(
        child: SignInForm()
      ),
    );
  }
}
44
likes
120
pub points
90%
popularity

Publisher

unverified uploader

A password strength checker for flutter, works for Android and iOS.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_password_strength