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.
40 lines
1.4 KiB
40 lines
1.4 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="Qwirkle.Pages.Credits"
|
|
xmlns:controls="clr-namespace:Qwirkle.Views"
|
|
Title="Credits">
|
|
<ScrollView>
|
|
<VerticalStackLayout>
|
|
<Grid Style="{StaticResource GridMain}">
|
|
<controls:GoBack></controls:GoBack>
|
|
<Label Text="Credits"
|
|
Style="{StaticResource Title}"/>
|
|
|
|
</Grid>
|
|
|
|
<Label
|
|
Text="Line-UP : "
|
|
Style="{StaticResource SubTitle}"/>
|
|
<Label
|
|
Text="Jules Lascret"
|
|
Style="{StaticResource ContentCenter}"/>
|
|
<Label
|
|
Text="Rémy Portet"
|
|
Style="{StaticResource ContentCenter}"/>
|
|
<Label
|
|
Text="Jérémy Mouyon (Project leader)"
|
|
Style="{StaticResource ContentCenter}"/>
|
|
<Label
|
|
Text="We would like to thank the University Institute of Technology for allowing us to carry out this project"
|
|
Style="{StaticResource SubTitle}"/>
|
|
<Image
|
|
Source="uca.png"
|
|
Style="{StaticResource Logo}"/>
|
|
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
</ContentPage> |