|
|
|
@ -13,28 +13,36 @@
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<VerticalStackLayout>
|
|
|
|
|
<Label
|
|
|
|
|
Text="Welcome to .NET MAUI!"
|
|
|
|
|
Text="Bienvenue sur l'app Loup-Garou"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center" />
|
|
|
|
|
HorizontalOptions="Center"/>
|
|
|
|
|
|
|
|
|
|
<!-- Titre -->
|
|
|
|
|
<Label Text="Home" FontSize="20" HorizontalTextAlignment="Center" VerticalTextAlignment="Center"/>
|
|
|
|
|
<!-- Titre -->
|
|
|
|
|
<Label Text="Home" FontSize="20" HorizontalTextAlignment="Center" VerticalTextAlignment="Center"/>
|
|
|
|
|
|
|
|
|
|
<!-- Contenu défilable -->
|
|
|
|
|
<ScrollView Grid.Row="1">
|
|
|
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Image Source="oip.jpg" WidthRequest="100" HeightRequest="100"/>
|
|
|
|
|
<Image Source="ppp.jpg" WidthRequest="100" HeightRequest="100"/>
|
|
|
|
|
<Image Source="tele.jpg" WidthRequest="100" HeightRequest="100"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Label Text="Description de l'image 1" FontSize="16"/>
|
|
|
|
|
<Label Text="Description de l'image 2" FontSize="16"/>
|
|
|
|
|
<Label Text="Description de l'image 3" FontSize="16"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<!-- Contenu défilable -->
|
|
|
|
|
<ScrollView Grid.Row="1">
|
|
|
|
|
<StackLayout Orientation="Vertical">
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Image Source="oip.jpg" WidthRequest="100" HeightRequest="100"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Label Text="Description de l'image 1" FontSize="16"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Image Source="ppp.jpg" WidthRequest="100" HeightRequest="100"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Label Text="Description de l'image 2" FontSize="16"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Image Source="tele.jpg" WidthRequest="100" HeightRequest="100"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<StackLayout>
|
|
|
|
|
<Label Text="Description de l'image 3" FontSize="16"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</Grid>
|
|
|
|
|
</ContentPage>
|