I have a Frame within my Xamarin Forms App. When I set InputTransparent=True on Android everything works as expected - the tap is handled by the child of the Frame. However on iOS when I set InputTransparent=True the tap is not recognised/lost and fails to handle the tap on the child of the Frame. I am running Xamarin.Forms version 3.6.0.344457 from Nuget.
<Frame InputTransparent="True">
<Button Text="Test" Clicked="Button_Clicked"/>
</Frame>
private void Button_Clicked(object sender, EventArgs e)
{
}