Hi All
What I was trying to achieve is a button for making a product favorite, so it will have two states - selected and deselected. Here is the example of UI
Initial approach was just adding the image to Button. But that had several shortcomings which you can see here. Then what I tried to do is just create an Image and add tap gesture on it. This approach worked perfectly fine on iOS devices, but on Android the image never receives the tap gesture. Perhaps the issue is that ListView cell itself has a tap gesture and that steals the gesture from the image? Is my guess correct? Is there a way to overcome this issue?
Regards