using System.Windows.Input; using System.ComponentModel; using System.Collections.ObjectModel; using Microsoft.Maui.Controls; using HomePantry.ViewModels; namespace HomePantry.Views; public partial class PantryPage : ContentPage { public PantryPage() { InitializeComponent(); BindingContext = new PantryInfo(); } private async void Button_Clicked(object? sender, EventArgs e) { await DisplayAlertAsync("Spiżarnia", "Funkcja dodawania produktów zostanie zaimplementowana w kolejnym zadaniu.", "OK"); } }