<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="GMCabsDriverAssistantSolution.Views.InstallCompletePage"
|
|
xmlns:custom="clr-namespace:GMCabsDriverAssistantSolution.CustomControls"
|
|
Shell.FlyoutBehavior="Disabled"
|
|
Shell.NavBarIsVisible="False">
|
|
<ContentPage.Resources>
|
|
<ResourceDictionary>
|
|
<Style x:Key="EntryStyle" TargetType="Entry">
|
|
<Setter Property="TextColor" Value="#000"></Setter>
|
|
<Setter Property="PlaceholderColor" Value="#9999"></Setter>
|
|
<Setter Property="TranslationY" Value="1" />
|
|
<Setter Property="MinimumHeightRequest" Value="36" />
|
|
</Style>
|
|
<Style x:Key="NoUnderlineEntryFrameStyle" TargetType="Frame">
|
|
<Setter Property="Padding">
|
|
<OnPlatform x:TypeArguments="Thickness">
|
|
<On Platform="Android">16,4</On>
|
|
<On Platform="iOS">16</On>
|
|
</OnPlatform>
|
|
</Setter>
|
|
<Setter Property="CornerRadius" Value="12"></Setter>
|
|
<Setter Property="Margin" Value="4,8,4,4"></Setter>
|
|
<Setter Property="HasShadow" Value="True"></Setter>
|
|
<Setter Property="MinimumHeightRequest" Value="50" />
|
|
<Setter Property="BackgroundColor" Value="White" />
|
|
</Style>
|
|
</ResourceDictionary>
|
|
</ContentPage.Resources>
|
|
<ContentPage.Content>
|
|
<StackLayout Orientation="Vertical"
|
|
BackgroundColor="#DCDCDC">
|
|
<StackLayout.Padding>
|
|
<OnPlatform x:TypeArguments="Thickness">
|
|
<On Platform="Android">20</On>
|
|
<On Platform="iOS">20,60</On>
|
|
</OnPlatform>
|
|
</StackLayout.Padding>
|
|
<Image Source="gmlogo_tablet.png"
|
|
Margin="48,30,48,12"
|
|
Scale="1.2"/>
|
|
<Label Text="Completed Taxi Installation"
|
|
HorizontalTextAlignment="Center"
|
|
FontSize="20"
|
|
TextColor="Black"
|
|
VerticalOptions="CenterAndExpand"/>
|
|
<Button Text="Continue"
|
|
FontSize="20"
|
|
Margin="20,16,20,0"
|
|
CharacterSpacing="5"
|
|
VerticalOptions="EndAndExpand"
|
|
Clicked="Continue_Clicked"/>
|
|
|
|
</StackLayout>
|
|
</ContentPage.Content>
|
|
</ContentPage>
|