Last updated:
0 purchases
pin verification code
pin_verification_code #
Pin Verification Code is a Flutter library that allows you to integrate a pin verification code layout into your project.
Usage #
Lets take a look at how to use PinKeyboardCode widget:
PinKeyboardCode(
pinLength: 6,
onCompleted: (String enteredPin) {
//process the enteredPin here
},
);
copied to clipboard
You give the library the size of the pin you want — 4,5 or 6. You must also provide a function to the onCompleted parameter which will be executed once the user fills the pin size. The function will provide you with the data of the entered pin.
You can also customize the enter pin screen components. More in API Reference.
Gallery #
License #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.