Component

PasswordInput

Flutter implementation of the PasswordInput component.

Usage

dart
import 'package:refraction_ui/refraction_ui.dart';

class MyPasswordInputExample extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return PasswordInput(
      // Add props here
    );
  }
}