15 lines
289 B
C#
15 lines
289 B
C#
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!"
|
|
}
|
|
}
|
|
};
|
|
}
|
|
} |