Xamarin.Forms.Behaviors
Xamarin.Forms.Behaviors copied to clipboard
ItemTappedEventArgs is always coming as null
I put ItemTapped as event name and binded to a delegtecommand. <behaviors:EventToCommand EventName="ItemTapped" Command="{Binding Command}" /> But the argument is coming as null. DelegateCommand<ItemTappedEventArgs>(async selected => { //do something }); Here 'selecte' is coming as null. Due to that on event firing, selected item is never obtained from the command.
I have this issue too