|
|
@ -20,8 +20,13 @@ public partial class HomePage : ContentPage
|
|
|
|
{
|
|
|
|
{
|
|
|
|
layout.Children.Add(new RecipeView(info, () =>
|
|
|
|
layout.Children.Add(new RecipeView(info, () =>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Recipe recipe = service.GetRecipe(info);
|
|
|
|
Recipe? recipe = service.GetRecipe(info);
|
|
|
|
Shell.Current.Navigation.PushAsync(new RecipePage(recipe, notifier, preferences, 1));
|
|
|
|
if (recipe != null)
|
|
|
|
|
|
|
|
Shell.Current.Navigation.PushAsync(new RecipePage(recipe, notifier, preferences, 1));
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
notifier.Error("Could not find recipe");
|
|
|
|
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|