Greetings,
For my app, I show a display prompt to ask for a quantity. Before we were using a quantity of boxes, but recently we also started getting number of pallets. Since in the end it is stored as a string anyway, (that number is simply an information. It is never used for any calculation so it's simply added on a footnote) the easy solution proposed was to add a P or B after the number. My question is: How to create a custom keyboard that accept numbers and P and B?
Here's the simple line of code where I need it. Keyborad.Numerci comes from Xamarin.Forms.Keyboard.
viewModel._quantity = await DisplayPromptAsync(viewModel._quantity, "Quantité ", keyboard: Keyboard.Numeric);