The last view will be created in the same way as all the others. Proceed as follows:
- In the News project, right-click the Views folder, select Add, and then click New Item... .
- Under the Visual C# Items node on the left, select Xamarin.Forms.
- Select Content Page and name it AboutView.
- Click Add to create the page.
This view is the only view that will actually stay a placeholder view. It's up to you to do something with it if you choose to build something cool out of this project later on. So, we will only add a label that states that this is the AboutView.
- In the News project, open About.xaml .
- Edit the XAML code by adding the following code marked in bold:
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
...