flutter_password_input 0.1.0 copy "flutter_password_input: ^0.1.0" to clipboard
flutter_password_input: ^0.1.0 copied to clipboard

A customizable password text field widget with Caps Lock detection, visibility toggle, and comprehensive theming support.

flutter_password_input #

A password text field with Caps Lock detection and visibility toggle.

Features #

  • Caps Lock warning when focused
  • Password visibility toggle
  • Prefix/suffix widget support
  • Theming via PasswordTextFieldTheme

Install #

dependencies:
  flutter_password_input: ^0.1.0

Usage #

import 'package:flutter_password_input/flutter_password_input.dart';

PasswordTextField(
  labelText: 'Password',
  capsLockWarningText: 'Caps Lock is on!',
)

With Theme #

PasswordTextField(
  theme: PasswordTextFieldTheme(
    width: 300,
    borderRadius: 12,
    focusBorderColor: Colors.blue,
  ),
  labelText: 'Password',
)

With Prefix/Suffix #

PasswordTextField(
  labelText: 'Password',
  prefixWidget: Icon(Icons.lock),
  suffixWidget: IconButton(
    icon: Icon(Icons.info),
    onPressed: () {},
  ),
)

License #

MIT

0
likes
0
points
0
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable password text field widget with Caps Lock detection, visibility toggle, and comprehensive theming support.

Repository (GitHub)
View/report issues

Topics

#password #textfield #input #caps-lock #security

License

unknown (license)

Dependencies

flutter, flutter_ime

More

Packages that depend on flutter_password_input