MobileApp/NewPage1.cs

15 lines
288 B
C#
Raw Permalink Normal View History

2025-02-27 15:15:06 +03:00
namespace MauiAppSim;
public class NewPage1 : ContentPage
{
public NewPage1()
{
Content = new VerticalStackLayout
{
Children = {
new Label { HorizontalOptions = LayoutOptions.Center, VerticalOptions = LayoutOptions.Center, Text = "Welcome to .NET MAUI!"
}
}
};
}
}