Hi.
I have below xaml where i have added to ContentPage
<Image HeightRequest="40" WidthRequest="40" >
<Image.Source>
<OnPlatform x:TypeArguments="ImageSource">
<OnPlatform.iOS>
<FileImageSource File="xxx.png"/>
</OnPlatform.iOS>
<OnPlatform.Android>
<FileImageSource File="xxx.png"/>
</OnPlatform.Android>
<OnPlatform.WinPhone>
<FileImageSource File="xxx.png"/>
</OnPlatform.WinPhone>
</OnPlatform>
</Image.Source>
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="imageInsideListTapped" CommandParameter="{Binding Path=id}" />
</Image.GestureRecognizers>
</Image>
Now i want calling imageInsideListTapped get value from CommandParameter.
Ho i can do it?