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.
20 lines
1.2 KiB
20 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="MauiSpark.Pages.Defaite"
|
|
xmlns:pages="clr-namespace:MauiSpark.Pages"
|
|
Title="Defaite">
|
|
<VerticalStackLayout >
|
|
<FlexLayout Direction="Row" JustifyContent="SpaceAround" AlignContent="Center" VerticalOptions="Center" Margin="10">
|
|
<Image Source="defaite.png" MaximumHeightRequest="100" MaximumWidthRequest="100" />
|
|
<Frame HorizontalOptions="Center" VerticalOptions="Center" Style="{StaticResource FrameTitrePage}" >
|
|
<Label Text="Defaite" Style="{StaticResource TexteTitre}"/>
|
|
</Frame>
|
|
<Image Source="defaite.png" MaximumHeightRequest="100" MaximumWidthRequest="100"/>
|
|
</FlexLayout>
|
|
<Frame Margin="20">
|
|
<Label HorizontalOptions="Center" Text="Aucun des deux joueurs, Joueur 1 et Joueur 2 n'a trouvé le code secret" Style="{StaticResource TexteFrame}"/>
|
|
</Frame>
|
|
<Button Text="Menu" VerticalOptions="End" HorizontalOptions="Center"></Button>
|
|
</VerticalStackLayout>
|
|
</ContentPage> |