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.

40 lines
1.7 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.ScanDrivingLicencePage"
  5. Shell.FlyoutBehavior="Disabled"
  6. Title="Scan Driving Licence">
  7. <ContentPage.Content>
  8. <StackLayout
  9. Padding="16">
  10. <Label Text="Update your profile with the latest drivers licence image"
  11. FontSize="Large"
  12. HorizontalTextAlignment="Center"
  13. Margin="0, 24, 0, 0"
  14. TextColor="Black"/>
  15. <Image BackgroundColor="WhiteSmoke"
  16. VerticalOptions="FillAndExpand"
  17. x:Name="resultImage"
  18. HeightRequest="192"
  19. Aspect="AspectFit"
  20. Margin="0,24,0,0"/>
  21. <Button Text="Scan Driving licence"
  22. VerticalOptions="End"
  23. FontSize="20"
  24. Margin="0,24,0,0"
  25. Clicked="ScanDrivingLicence_Clicked" />
  26. <Button x:Name="BtnUpdateProfile"
  27. Text="Update Profile"
  28. VerticalOptions="End"
  29. FontSize="20"
  30. Margin="0,16,0,0"
  31. IsEnabled="False"
  32. Clicked="BtnUpdateProfile_Clicked"/>
  33. <Button Text="Back"
  34. VerticalOptions="EndAndExpand"
  35. FontSize="20"
  36. Margin="0,16,0,0"
  37. Clicked="BtnPageBack_Clicked"/>
  38. </StackLayout>
  39. </ContentPage.Content>
  40. </ContentPage>