Exemplo n.º 1
0
        async public void Nieuw()
        {
            productName = this.productName;
            DataStore.AddIngredient(new Ingredient()
            {
                ProductName = productName, Barcode = bc, Quantity = 1
            });
            await App.Current.MainPage.Navigation.PopToRootAsync();

            await App.Current.MainPage.Navigation.PushAsync(new ScannerView());

            await DataStore.GetAllIngredientAsync();
        }