26 lines
1.0 KiB
XML
26 lines
1.0 KiB
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"
|
|
xmlns:partial="clr-namespace:GreadyPoang.ViewsPartial"
|
|
x:Class="GreadyPoang.MainPage"
|
|
Background="LightCyan"
|
|
Title="{StaticResource ApplicationTitle}">
|
|
<Grid Style="{StaticResource Grid.Page}">
|
|
<partial:HeaderView Grid.Row="0"
|
|
Grid.ColumnSpan="2"
|
|
ViewTitle="{StaticResource ApplicationTitle}"
|
|
ViewDescription="Välkommen till Gready">
|
|
|
|
</partial:HeaderView>
|
|
<Image Source="snurrtarning.gif"
|
|
IsAnimationPlaying="True"
|
|
HorizontalOptions="Center"
|
|
VerticalOptions="Center"
|
|
Aspect="AspectFit"
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
HeightRequest="250"
|
|
Margin="10"/>
|
|
</Grid>
|
|
</ContentPage>
|