Now that we have updated our WalksMainPage code-behind file so that it can reference our NavigationService class, thereby enabling it to navigate to our ViewModels within our navigation stack, we can proceed and start updating the WalksEntryPageViewModel class so that it can use our navigation service.
Let's take a look at how we can achieve this by following these steps:
- Ensure that the WalkEntryPageViewModel.cs file is displayed within the code editor and enter in the following highlighted code sections within the code snippet:
//
// WalkEntryPageViewModel.cs
// The ViewModel for our WalkEntryPage ContentPage
//
// Created by Steven F. Daniel on 5/06/2018.
// Copyright © 2018 GENIESOFT STUDIOS. All rights reserved.
//
using System;
using System.Threading.Tasks;
using TrackMyWalks...