如何在 iOS 上的键盘类型电子邮件中插入按钮“.com”?

how to insert button ".com" on keyboard type email on iOS?

当焦点 Entry 键盘类型的文本在设备 iOS 上 "Email" 时,

键盘显示:

我想添加到此键盘上的按钮 ".com"(或将按钮 "Space" 替换为按钮 ".com"

这是 URL 在 iOS 上的键盘类型:

请帮帮我!谢谢!

在 iOS 上,即 "URL" 键盘 (UIKeyboardType.Url):

iOS:

uiTextField.KeyboardType = UIKeyboardType.Url;

Xamarin.Forms:

<Entry Keyboard="Url" />