parent
482c0cb9bd
commit
58d8043910
@ -0,0 +1,60 @@
|
||||
<?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="Qwirkle.Pages.Credits"
|
||||
Title="Credits">
|
||||
<ScrollView>
|
||||
<VerticalStackLayout>
|
||||
<Grid ColumnDefinitions="*, 4*,*"
|
||||
Margin="10, 0">
|
||||
<Button Text="Go Back"
|
||||
Grid.Column="0"
|
||||
Grid.Row="0"
|
||||
HorizontalOptions="Start"
|
||||
VerticalOptions="Center"
|
||||
/>
|
||||
<Label FontSize="Header"
|
||||
Grid.Column="1"
|
||||
Grid.Row="0"
|
||||
FontAttributes="Bold"
|
||||
HorizontalOptions="Center"
|
||||
Padding="50, 10"
|
||||
Text="Credits"/>
|
||||
</Grid>
|
||||
|
||||
<Label
|
||||
Text="Line-UP : "
|
||||
FontSize="30"
|
||||
FontAttributes="Bold"
|
||||
Padding="10"
|
||||
HorizontalOptions="Center" />
|
||||
<Label
|
||||
Text="Jules Lascret"
|
||||
FontSize="20"
|
||||
HorizontalOptions="Center" />
|
||||
<Label
|
||||
Text="Rémy Portet"
|
||||
FontSize="20"
|
||||
HorizontalOptions="Center" />
|
||||
<Label
|
||||
Text="Jérémy Mouyon (Project leader)"
|
||||
FontSize="20"
|
||||
HorizontalOptions="Center" />
|
||||
<Label
|
||||
Text="Merci à l'IUT Informatique de l'université de Clermont-Auvernge pour nous avoir permis de realiser ce projet."
|
||||
FontSize="20"
|
||||
Padding="75"
|
||||
FontAttributes="Bold"
|
||||
HorizontalOptions="Center" />
|
||||
<Image
|
||||
Source="uca.png"
|
||||
HeightRequest="300"
|
||||
Aspect="AspectFit"
|
||||
/>
|
||||
|
||||
|
||||
|
||||
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Credits : ContentPage
|
||||
{
|
||||
public Credits()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 21 KiB |
Loading…
Reference in new issue