Dodaj pliki projektów.

This commit is contained in:
Christopher
2024-04-04 23:32:46 +02:00
commit a6d1f7dc1d
65 changed files with 2187 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
using System.Net;
using System.Text.Json;
namespace Weather
{
public partial class MainPage : ContentPage
{
string api_key = "a907c532735513e696815ef722a3d345", type = "id", city = "3093133";
WeatherViewModel viewModel;
public MainPage()
{
InitializeComponent();
viewModel = new WeatherViewModel(api_key, city, type);
BindingContext = viewModel;
}
}
}