Xamarin Cross-Platform Solution Creating the Views Directory (AboutPage)
Now we get to create the individual Views used in our Xamarin cross-platform mobile app. Because many of these are quite similar, we will be excluding much of the code in XAML page documents below the first. As I am sure you already know, proper app design means separation of the Model-View-Controller into their own sections of code. Today we will be covering the View designs of our Wet Your Whistle mobile app. We will start below with the xaml contained in the About page. <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:NYWineryHopper.Views" xmlns:controls="clr-namespace:MarcTron.Plugin.Controls;assembly=Plugin.MtAdmob" x:Class="NYWineryHopper.Views.AboutPage" Title="About"> <ContentPage.ToolbarItems > <ToolbarItem Text="Vid Walkthru" Clicked="Loadvid" /> <ToolbarItem Text="Settings" Clicked="LoadSettings" /> </ContentPage.ToolbarItems> <ContentPage.Content> <Grid> <Grid.RowDefinitions> <RowDefinition Height="*" /> <RowDefinition Height="50" /> </Grid.RowDefinitions> <StackLayout Grid.Row="0"> <Label Text="About NY Wine Hopper" FontSize="Large" VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand" /> <Image…





