You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
<?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="LolApp.MainPage">
|
|
|
|
<ScrollView>
|
|
<VerticalStackLayout
|
|
Spacing="25"
|
|
Padding="30,0"
|
|
VerticalOptions="Center">
|
|
|
|
<Image
|
|
Source="lollogo.jpg"
|
|
SemanticProperties.Description="Cute dot net bot waving hi to you!"
|
|
HeightRequest="200"
|
|
HorizontalOptions="Center" />
|
|
|
|
<Label
|
|
Text="League of Legends Data"
|
|
SemanticProperties.HeadingLevel="Level1"
|
|
FontSize="32"
|
|
HorizontalOptions="Center"
|
|
HorizontalTextAlignment="Center"/>
|
|
|
|
<Label
|
|
Text="Find information about champions, skins and runes"
|
|
SemanticProperties.HeadingLevel="Level2"
|
|
SemanticProperties.Description="Welcome to dot net Multi platform App U I"
|
|
FontSize="18"
|
|
HorizontalOptions="Center"
|
|
HorizontalTextAlignment="Center"/>
|
|
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
|
|
</ContentPage>
|
|
|