Compare commits

..

No commits in common. "main" and "NewDesign" have entirely different histories.

15
newDesign.cs Normal file
View File

@ -0,0 +1,15 @@
namespace MobileApp;
public class newDesign : ContentPage
{
public newDesign()
{
Content = new VerticalStackLayout
{
Children = {
new Label { HorizontalOptions = LayoutOptions.Center, VerticalOptions = LayoutOptions.Center, Text = "Welcome to .NET MAUI!"
}
}
};
}
}