Good day,
Kindly provide support in how to achieve the following:
Detecting Item tapped using Prism's MVVM pattern and Delegate command.
I used the following approach using Xamarin Forms on Android platform:
and
EventName="ItemTapped"
Command="AEvent" />
with Viewmodel constructor
public SyncPageViewModel(INavigationService navigationService,
IPageDialogService pageDialogService )
: base(navigationService)
{
...
}
resulting in the following error:
XLS0507 Type 'RadialMenuViewModel' is not usable as an object element because it is not public or does not define a public parameterless constructor or a type converter.
Warm regards
Ian