You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.2 KiB

1 year ago
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="GMCabsDriverAssistantSolution.Views.SplashPage"
  5. Shell.FlyoutBehavior="Disabled"
  6. Shell.NavBarIsVisible="False">
  7. <ContentPage.Content>
  8. <StackLayout Orientation="Vertical"
  9. BackgroundColor="#DCDCDC">
  10. <StackLayout.Padding>
  11. <OnPlatform x:TypeArguments="Thickness">
  12. <On Platform="Android">20</On>
  13. <On Platform="iOS">20,60</On>
  14. </OnPlatform>
  15. </StackLayout.Padding>
  16. <Image Source="{OnIdiom Phone='gmlogo.png',Tablet='gmlogo_tablet.png'}"
  17. Margin="{OnIdiom Phone='48,30,48,12',Tablet='48,30,48,12'}"
  18. Scale="{OnIdiom Phone='1.2',Tablet='0.7'}"/>
  19. <ActivityIndicator IsRunning="True"
  20. IsVisible="True" />
  21. <Label HorizontalTextAlignment="Center"
  22. Text="Loading ..."
  23. TextColor="Black"/>
  24. </StackLayout>
  25. </ContentPage.Content>
  26. </ContentPage>