flower-story/FlowerApp/UserPage.xaml
2023-07-31 17:11:39 +08:00

18 lines
573 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<l:AppContentPage
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:l="clr-namespace:Blahblah.FlowerApp"
x:Class="Blahblah.FlowerApp.UserPage"
x:Name="userPage"
x:DataType="l:UserPage"
Title="{l:Lang userPage, Default=Profile}">
<VerticalStackLayout>
<Label
Text="Welcome to .NET MAUI!"
VerticalOptions="Center"
HorizontalOptions="Center" />
</VerticalStackLayout>
</l:AppContentPage>