diff --git a/src/iOS/Avalonia.iOS/TextInputResponder.Properties.cs b/src/iOS/Avalonia.iOS/TextInputResponder.Properties.cs index 6c4dd1074f..4b0a826dc2 100644 --- a/src/iOS/Avalonia.iOS/TextInputResponder.Properties.cs +++ b/src/iOS/Avalonia.iOS/TextInputResponder.Properties.cs @@ -24,8 +24,9 @@ partial class AvaloniaView _view._options.ContentType switch { TextInputContentType.Alpha => UIKeyboardType.AsciiCapable, - TextInputContentType.Digits or TextInputContentType.Number => UIKeyboardType.NumberPad, + TextInputContentType.Digits => UIKeyboardType.PhonePad, TextInputContentType.Pin => UIKeyboardType.NumberPad, + TextInputContentType.Number => UIKeyboardType.DecimalPad, TextInputContentType.Email => UIKeyboardType.EmailAddress, TextInputContentType.Url => UIKeyboardType.Url, TextInputContentType.Name => UIKeyboardType.NamePhonePad,