Hi @VivekNigam I think you need to control the BackButtonPressed on you MasterDetailPage code behind, something like this: protected override bool OnBackButtonPressed(){ if (Detail.Navigation.Navigat… (View Post)
@rraallvv see if this can help public static readonly BindableProperty CommandProperty = BindableProperty.Create( "Command", typeof(ICommand), typeof(ImageButton), null, propertyChanged: (b… (View Post)
Hi @SoniaDevRoot Based on what you said, I put together an example using Behavior and a ListView. On this example, basically when the user scroll to the last Item in the ListView, the ViewModel will … (View Post)
Hi @TimRegan Your post on stackoverflow does have a link inside the xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" Remove this bit and you will be able to… (View Post)