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.

15 lines
446 B

  1. using GMCabsDriverAssistantSolution.ViewModels;
  2. namespace GMCabsDriverAssistantSolution.Views;
  3. public partial class PassgerCollectedPage : ContentPage
  4. {
  5. #region Fields
  6. private readonly StartRideViewModel _viewModel;
  7. #endregion
  8. public PassgerCollectedPage()
  9. {
  10. InitializeComponent();
  11. BindingContext = _viewModel = new StartRideViewModel(this);
  12. }
  13. protected override bool OnBackButtonPressed() => true;
  14. }