void IngredientAdded(MealEntryPageViewModel viewModel)
 {
     InputIngredient.Text = string.Empty;
     InputIngredient.Focus();
 }
        public MealEntryPage(MealEntryPageViewModel viewModel)
        {
            InitializeComponent();

            BindingContext = viewModel;
        }