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.

33 lines
1.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.SettingsPage"
  5. Title="Settings"
  6. Shell.FlyoutBehavior="Disabled">
  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. <TableView x:Name="Settings">
  17. <TableRoot>
  18. <TableSection x:Name="SilentModeSetting" Title="Silent Mode Setting">
  19. <SwitchCell x:Name="SwitchSilentMode" Text="Silent Mode" OnChanged="SilentModeSwitch_OnChanged" />
  20. </TableSection>
  21. <TableSection x:Name="VoucherScanSettings" Title="Voucher Scan Settings">
  22. <SwitchCell x:Name="SwitchVoucherScanUseFrontCamera" Text="Use Front Camera" OnChanged="SwitchVoucherScanUseFrontCamera_OnChanged" />
  23. </TableSection>
  24. </TableRoot>
  25. </TableView>
  26. <Button VerticalOptions="EndAndExpand"
  27. Margin="40,0,40,15"
  28. Text="Close Account"
  29. FontSize="20"
  30. Clicked="CloseButton_Clicked"/>
  31. </StackLayout>
  32. </ContentPage.Content>
  33. </ContentPage>