I'm using the below code to bind button click event.
View
this.BindingContext = new SampleViewModel();
btnClick.SetBinding(Button.CommandProperty,"ButtonClick");
ViewModel
I'm implementing button click event using ICommand.
I want to show a custom pop up on that click event.
Thanks .