PIN Code Security system

I want to create a PIN codey security system
The criterion is that only numbers should be used and contains 8 characters.

Do you have any idea which component to use??

You can use textbox component and use when textbox.text change block to aim what you are trying

1 Like

in proprties of text box set input type to Numbers

image

and as @OfficialDjJohn said, set keyboard hide or set focus to another textbox.

blocks - 2020-01-02T113646.938

2 Likes

1 Like

I would personally use s CardView + Label combo to make the UI. I wouldn’t use a textbox for a PIN entry system. Also, for local storage of the correct PIN, I’d hash it with BCrypt or PBKDF2.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.