Is there a xamarin component that will handle PIN input?

I see there is iOS and iPad, a xamarin P IN Code Control component that will give you a software-based numeric keypad to enter your PIN. Aside from coding all of this using C # in Xamarin, I'd rather find the component.

I need a PIN control, a xamarin component that is cross-platform, which is the target of xamarin. We will be using this on Android and iOS devices.

Does anyone see such a component on the Xamarin Component Store and I am using the wrong search terms, PIN, Keyboard, Numeric?

+3


source to share


2 answers


For future googlers, you might be interested in the small Xamarin.Forms library XamarinFormsPinView . I am the author.

It is not very customizable, but it should meet the most common requirements.



+5


source


Sorry I haven't seen a component that does what you want.

This sample Xamarin.Forms calculator can be a useful starting point for writing a custom one (since it already implements a numeric keypad with display and backspace).



Obviously it takes a lot of styling work to make it look like any of the native PIN entry screens, but it should save you writing from scratch.

+3


source







All Articles