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.0 KiB

  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.VoucherScanHistory"
  5. xmlns:vm="clr-namespace:GMCabsDriverAssistantSolution.ViewModels"
  6. Shell.FlyoutBehavior="Disabled"
  7. Title="{Binding Title}">
  8. <ContentPage.BindingContext>
  9. <vm:VoucherScanHistoryViewModel/>
  10. </ContentPage.BindingContext>
  11. <ContentPage.Content>
  12. <StackLayout>
  13. <DatePicker x:Name="reportDatePicker"
  14. DateSelected="OnDateSelected" BackgroundColor="White"/>
  15. <StackLayout Orientation="Horizontal" HorizontalOptions="Center">
  16. <Label Text="Vouchers Redeemed:" TextColor="Black" FontSize="22"/>
  17. <Label Text="{Binding VoucherScanCount}" TextColor="Black" FontSize="22"/>
  18. </StackLayout>
  19. </StackLayout>
  20. </ContentPage.Content>
  21. </ContentPage>