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.

21 lines
1.1 KiB

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <toolkit:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="GMCabsDriverAssistantSolution.Views.PrivacyPolicyDialogPage"
  5. xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
  6. Size="{OnIdiom Phone='350,520',Tablet='800,500'}"
  7. Color="Transparent">
  8. <Frame BackgroundColor="White" CornerRadius="10">
  9. <StackLayout Orientation="Vertical">
  10. <StackLayout VerticalOptions="EndAndExpand">
  11. <Label Text="X" FontSize="20" HorizontalOptions="EndAndExpand">
  12. <Label.GestureRecognizers>
  13. <TapGestureRecognizer Tapped="lblClose_Tapped" />
  14. </Label.GestureRecognizers>
  15. </Label>
  16. </StackLayout>
  17. <StackLayout VerticalOptions="CenterAndExpand">
  18. <WebView x:Name="privacyPolicyView" WidthRequest="1900" HeightRequest="1900" />
  19. </StackLayout>
  20. </StackLayout>
  21. </Frame>
  22. </toolkit:Popup>