Xamarin.Forms.Chips
Xamarin.Forms.Chips copied to clipboard
Not possible to select chip on label
Is there any way to click behind the label? If I click on the label the text gets clicked instead of the chip behind it.
I ran into this issue too, where I had to click behind the label to fire off the Command
.
I added the following to Chip.xaml:L71 to get around it.
<Label.GestureRecognizers>
<TapGestureRecognizer Tapped="Clicked" />
</Label.GestureRecognizers>
I'm not sure if it breaks anything else (doesn't seem to), or how @Tommigun1980 wants to handle it.
I come to this issue as well, your solution seems perfectly working @thewoodknight
I made a pull request with this change
Why i use latest version this bug still occur?.
Thanks @thewoodknight. Your solution helped me today.