Hi, I am developing an application using the PCL-based Xamarin.Forms solution. For my application, I need a Listview ViewCell Contextaction. I referenced this document to add contextActions. When I launched it in android, the icon is displayed. But on iOS, it does not work.
Xaml code
<ViewCell.ContextActions> <MenuItem Text="Edit" x:Name="MenuEdit" /> <MenuItem Clicked="OnDeleteMenu" Icon="dustbin.png" Text="Delete" IsDestructive="true" CommandParameter="{Binding .}" /> </ViewCell.ContextActions>
Please someone give a solution or related sources.
source share