I am having one stacklayout and one button inside that. I want to click through that stacklayout, and also that button click.
I tried setting InputTransparent as true for StackLayout and then setting same as false for button. It did not work. Whatever applied at parent level is set to all children inside it.
<StackLayout InputTransparent="True">
<Button Text="Submit" InputTransparent="False"/>
</StackLayout>
I expect button to be clicked, as well as element behind StackLayout should be clickable.