Przeprowadzka

This commit is contained in:
2026-07-16 12:25:33 +02:00
commit 10d59ede33
7016 changed files with 726877 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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");
}
}