In Xamarin Forms, here's the default iOS Picker:
How do I remove the shortcut bar (undo / redo / copy / paste)?
In Xamarin Forms, here's the default iOS Picker:
How do I remove the shortcut bar (undo / redo / copy / paste)?
In your custom renderer, you simply need to set the Control's InputAssistantItem.LeadingBarButtonGroups
and InputAssistantItem.TrailingBarButtonGroups
to null
.
The renderer would look something like this: