19 lines
808 B
XML
19 lines
808 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="autosos_maui.Views.LoginView">
|
|
<ContentPage.Content>
|
|
<VerticalStackLayout Padding="20">
|
|
|
|
<HorizontalStackLayout VerticalOptions="Center">
|
|
<Image Source="ic_launcher.png" WidthRequest="50" HeightRequest="50"/>
|
|
<VerticalStackLayout>
|
|
<Label Text="欢迎登录啾啾救援"></Label>
|
|
<Label Text="宁波易到互联科技有限公司"></Label>
|
|
</VerticalStackLayout>
|
|
</HorizontalStackLayout>
|
|
|
|
</VerticalStackLayout>
|
|
</ContentPage.Content>
|
|
</ContentPage> |