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.
45 lines
1.5 KiB
45 lines
1.5 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="BookApp.Bibliotheque"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
xmlns:v="clr-namespace:BookApp.ContentViews"
|
|
Routing.Route="Bibliotheque"
|
|
Title="Bibliotheque">
|
|
<Shell.TitleView>
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
<Button Text="Modifier" TextColor="{StaticResource Key=RedMusic}" HorizontalOptions="End" Margin="180,0,0,0" />
|
|
</StackLayout>
|
|
</Shell.TitleView>
|
|
<ScrollView>
|
|
<VerticalStackLayout
|
|
Spacing="25"
|
|
Padding="30,0"
|
|
VerticalOptions="Center">
|
|
|
|
|
|
<v:MenuItem/>
|
|
<v:MenuItem />
|
|
<v:MenuItem/>
|
|
<Label Text="Ajouts récents" FontSize="Title" HorizontalOptions="Start" />
|
|
<Grid RowDefinitions="*,*" RowSpacing="10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<v:ImageCard/>
|
|
<v:ImageCard Grid.Column="1"/>
|
|
|
|
<v:ImageCard Grid.Row="1" />
|
|
<v:ImageCard Grid.Row="1" Grid.Column="1"/>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
</ContentPage>
|