pincode_input_fields

Creator: coderz1093

Last updated:

Add to Cart

Description:

pincode input fields

Pincode input fields #
A Flutter plugin that provides a pin/otp code input widget.
Quick start #
...
MaterialApp(
home: Scaffold(
body: Center(
child: PincodeInputFields(),
),
),
);
...
copied to clipboard
If you want to controll input, use PincodeInputFieldsController
...

final _controller = PincodeInputFieldsController();

...
MaterialApp(
home: Scaffold(
body: Center(
child: PincodeInputFields(
controller: _controller,
),
),
),
);
...
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.