MobileApp/newDesign.cs

15 lines
289 B
C#
Raw Permalink Normal View History

2025-02-27 14:36:41 +03:00
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!"
}
}
};
}
}