<?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.SplashPage"
|
|
Shell.FlyoutBehavior="Disabled"
|
|
Shell.NavBarIsVisible="False">
|
|
<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="{OnIdiom Phone='gmlogo.png',Tablet='gmlogo_tablet.png'}"
|
|
Margin="{OnIdiom Phone='48,30,48,12',Tablet='48,30,48,12'}"
|
|
Scale="{OnIdiom Phone='1.2',Tablet='0.7'}"/>
|
|
<ActivityIndicator IsRunning="True"
|
|
IsVisible="True" />
|
|
|
|
<Label HorizontalTextAlignment="Center"
|
|
Text="Loading ..."
|
|
TextColor="Black"/>
|
|
</StackLayout>
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|