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.

56 lines
2.6 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.InstallCompletePage"
  5. xmlns:custom="clr-namespace:GMCabsDriverAssistantSolution.CustomControls"
  6. Shell.FlyoutBehavior="Disabled"
  7. Shell.NavBarIsVisible="False">
  8. <ContentPage.Resources>
  9. <ResourceDictionary>
  10. <Style x:Key="EntryStyle" TargetType="Entry">
  11. <Setter Property="TextColor" Value="#000"></Setter>
  12. <Setter Property="PlaceholderColor" Value="#9999"></Setter>
  13. <Setter Property="TranslationY" Value="1" />
  14. <Setter Property="MinimumHeightRequest" Value="36" />
  15. </Style>
  16. <Style x:Key="NoUnderlineEntryFrameStyle" TargetType="Frame">
  17. <Setter Property="Padding">
  18. <OnPlatform x:TypeArguments="Thickness">
  19. <On Platform="Android">16,4</On>
  20. <On Platform="iOS">16</On>
  21. </OnPlatform>
  22. </Setter>
  23. <Setter Property="CornerRadius" Value="12"></Setter>
  24. <Setter Property="Margin" Value="4,8,4,4"></Setter>
  25. <Setter Property="HasShadow" Value="True"></Setter>
  26. <Setter Property="MinimumHeightRequest" Value="50" />
  27. <Setter Property="BackgroundColor" Value="White" />
  28. </Style>
  29. </ResourceDictionary>
  30. </ContentPage.Resources>
  31. <ContentPage.Content>
  32. <StackLayout Orientation="Vertical"
  33. BackgroundColor="#DCDCDC">
  34. <StackLayout.Padding>
  35. <OnPlatform x:TypeArguments="Thickness">
  36. <On Platform="Android">20</On>
  37. <On Platform="iOS">20,60</On>
  38. </OnPlatform>
  39. </StackLayout.Padding>
  40. <Image Source="gmlogo_tablet.png"
  41. Margin="48,30,48,12"
  42. Scale="1.2"/>
  43. <Label Text="Completed Taxi Installation"
  44. HorizontalTextAlignment="Center"
  45. FontSize="20"
  46. TextColor="Black"
  47. VerticalOptions="CenterAndExpand"/>
  48. <Button Text="Continue"
  49. FontSize="20"
  50. Margin="20,16,20,0"
  51. CharacterSpacing="5"
  52. VerticalOptions="EndAndExpand"
  53. Clicked="Continue_Clicked"/>
  54. </StackLayout>
  55. </ContentPage.Content>
  56. </ContentPage>