fancy_password_field 2.0.6 copy "fancy_password_field: ^2.0.6" to clipboard
fancy_password_field: ^2.0.6 copied to clipboard

A highly customizable password control input widget. It has features such as password strenght and rules validation

example/lib/main.dart

import 'package:flutter/material.dart';

import 'samples/samples.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({
    Key? key,
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const Scaffold(
        body: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            /// Change this to one of the available samples on the samples folder
            Sample1(),
          ],
        ),
      ),
    );
  }
}
73
likes
140
pub points
91%
popularity

Publisher

verified publisherrodrigobastos.dev

A highly customizable password control input widget. It has features such as password strenght and rules validation

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, password_strength

More

Packages that depend on fancy_password_field