From e39765626b11a3f8566c1af354c2e9f656d9adc1 Mon Sep 17 00:00:00 2001 From: Julia Date: Thu, 27 Feb 2025 15:28:57 +0300 Subject: [PATCH] commit --- NewPage1.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 NewPage1.cs diff --git a/NewPage1.cs b/NewPage1.cs new file mode 100644 index 0000000..aa8bd49 --- /dev/null +++ b/NewPage1.cs @@ -0,0 +1,15 @@ +namespace MobileApp; + +public class NewPage1 : ContentPage +{ + public NewPage1() + { + Content = new VerticalStackLayout + { + Children = { + new Label { HorizontalOptions = LayoutOptions.Center, VerticalOptions = LayoutOptions.Center, Text = "Welcome to .NET MAUI!" + } + } + }; + } +} \ No newline at end of file