Event_Handler of the Done button of a picker

Unfortunately, you cannot use the same event for Android and iOS in your case, because:

Currently the Picker control sends the SelectedIndexChanged event on Android after the OK button is pressed. However, on iOS the event is sent whenever the user scrolls the picker and lets it stop on an item

It's known issue, I take quote from here.

You should combine SelectedIndexChanged and Unfocus events to achieve your goal. You can find some solutions here in this topic https://forums.xamarin.com/discussion/20847/picker-selection-event

UPD: Looks like I didn't understand your question right. If I did it right now, so you have to use custom renderers and specify needed logic in them.

For iOS. Create custom renderer inherited of PickerRenderer and implement something like that:

protected override void OnElementChanged(ElementChangedEventArgs<Picker> e)
    {
        base.OnElementChanged(e);

        var extendedPicker = e.NewElement as ExtendedPicker;
        if (extendedPicker == null) return;

        var toolbar = new UIToolbar(new CGRect(0.0f, 0.0f, Control.Frame.Size.Width, 44.0f));

        toolbar.Items = new[]
        {
            new UIBarButtonItem(UIBarButtonSystemItem.FlexibleSpace),
            new UIBarButtonItem("Done",
                UIBarButtonItemStyle.Done,
                delegate {
                    Control.ResignFirstResponder();
                })
        };

        if (this.Control != null)
        {
            Control.InputAccessoryView = toolbar;
        }
    }

For Andorid looks like it works from the box


There is now a platform specific configuration option that lets you enable this on iOS.

You specify a PickerMode on a specific picker to only select once someone hits done on iOS.

<ContentPage ...
             xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core">
    <StackLayout Margin="20">
        <Picker ... Title="Select a monkey" ios:Picker.UpdateMode="WhenFinished">
          ...
        </Picker>
        ...
    </StackLayout>
</ContentPage>

The Picker.On<iOS> method specifies that this platform-specific will only run on iOS. The Picker.SetUpdateMode method, in the Xamarin.Forms.PlatformConfiguration.iOSSpecific namespace, is used to control when item selection occurs, with the UpdateMode enumeration providing two possible values:

Immediately – item selection occurs as the user browses items in the Picker. This is the default behavior in Xamarin.Forms.

WhenFinished – item selection only occurs once the user has pressed the Done button in the Picker.

Read docs for more info on control. https://learn.microsoft.com/sr-latn-rs/xamarin/xamarin-forms/platform/ios/picker-selection