parent
b34b968b89
commit
1cfdc1ec6c
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,90 @@
|
||||
<?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="MVVM.Pages.DetailLivre"
|
||||
Title="DetailLivre">
|
||||
|
||||
|
||||
|
||||
<ContentPage.ToolbarItems>
|
||||
<ToolbarItem IconImageSource="plus"/>
|
||||
<ToolbarItem Text="Tous"/>
|
||||
<ToolbarItem Text="Détails du livre"/>
|
||||
|
||||
</ContentPage.ToolbarItems>
|
||||
|
||||
|
||||
<ScrollView>
|
||||
<Grid RowDefinitions="Auto,Auto,Auto,Auto,Auto,Auto,Auto,Auto">
|
||||
|
||||
<Grid Grid.Row="0" ColumnDefinitions="Auto,Auto">
|
||||
<Label Grid.Column="0" Text="PHOTO LIVRE"/>
|
||||
<Grid Grid.Column="1" RowDefinitions="Auto,*,Auto">
|
||||
<Label Grid.Row="0" Text="Titre LIVRE"/>
|
||||
<Label Grid.Row="2" Text="étoile Livre"/>
|
||||
</Grid>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="1" ColumnDefinitions="Auto,*,Auto">
|
||||
<Label Grid.Column="0" Text="Info en ligne"/>
|
||||
<Image Grid.Column="2" Source="chevron_right"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="2" RowDefinitions="Auto,Auto">
|
||||
<Label Grid.Row="0" Text="Auteur"/>
|
||||
<Label Grid.Row="1" Text="Auteur du livre"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="3" RowDefinitions="Auto,Auto">
|
||||
<Label Grid.Row="0" Text="Maison d'édition"/>
|
||||
<Label Grid.Row="1" Text="................."/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="4" RowDefinitions="Auto,Auto">
|
||||
<Label Grid.Row="0" Text="Résumé"/>
|
||||
<Label Grid.Row="1" Text="................. Un texte super long"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="5" RowDefinitions="Auto,Auto">
|
||||
<Label Grid.Row="0" Text="Détails"/>
|
||||
<Grid Grid.Row="1" ColumnDefinitions="Auto,*,Auto">
|
||||
|
||||
<Grid Grid.Column="0" RowDefinitions="Auto,Auto,Auto">
|
||||
<Label Grid.Row="0" Text="Nombre de pages"/>
|
||||
<Label Grid.Row="1" Text="Langue"/>
|
||||
<Label Grid.Row="2" Text="ISBN"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Column="2" RowDefinitions="Auto,Auto,Auto">
|
||||
<Label Grid.Row="0" Text="700"/>
|
||||
<Label Grid.Row="1" Text="Français"/>
|
||||
<Label Grid.Row="2" Text="4516406064568276268126"/>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Grid>
|
||||
|
||||
|
||||
<Grid Grid.Row="6" RowDefinitions="Auto,Auto">
|
||||
<Label Grid.Row="0" Text="Statut de lecture"/>
|
||||
<Grid Grid.Row="1" ColumnDefinitions="Auto,*,Auto">
|
||||
<Label Grid.Column="0" Text="Statut"/>
|
||||
<Label Grid.Column="2" Text="Non lu"/>
|
||||
</Grid>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="7" RowDefinitions="Auto,Auto">
|
||||
<Label Grid.Row="0" Text="Bibliothèque"/>
|
||||
<Grid Grid.Row="1" ColumnDefinitions="Auto,*,Auto">
|
||||
<Label Grid.Column="0" Text="Ajouté le"/>
|
||||
<Label Grid.Column="2" Text="10 août 2023"/>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Grid>
|
||||
|
||||
<!--
|
||||
<Label Text="Mettre des boutons ici"/>
|
||||
-->
|
||||
|
||||
</ScrollView>
|
||||
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace MVVM.Pages;
|
||||
|
||||
public partial class DetailLivre : ContentPage
|
||||
{
|
||||
public DetailLivre()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
<?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="MVVM.Pages.FiltreAuteur"
|
||||
Title="FiltreAuteur">
|
||||
|
||||
<ContentPage.ToolbarItems>
|
||||
<ToolbarItem IconImageSource="plus"/>
|
||||
<ToolbarItem Text="Mes livres"/>
|
||||
<ToolbarItem Text="Auteur"/>
|
||||
<ToolbarItem IconImageSource="plus"/>
|
||||
|
||||
</ContentPage.ToolbarItems>
|
||||
|
||||
|
||||
<ScrollView>
|
||||
|
||||
|
||||
<Label Text="Contenu !! Search bar + faire une liste !!"/>
|
||||
|
||||
|
||||
|
||||
</ScrollView>
|
||||
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace MVVM.Pages;
|
||||
|
||||
public partial class FiltreAuteur : ContentPage
|
||||
{
|
||||
public FiltreAuteur()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
<?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="MVVM.Pages.FiltrePublication"
|
||||
Title="FiltrePublication">
|
||||
|
||||
<ContentPage.ToolbarItems>
|
||||
<ToolbarItem IconImageSource="plus"/>
|
||||
<ToolbarItem Text="Date de publication"/>
|
||||
<ToolbarItem IconImageSource="plus"/>
|
||||
|
||||
</ContentPage.ToolbarItems>
|
||||
|
||||
|
||||
<ScrollView>
|
||||
|
||||
|
||||
<Label Text="Contenu !! Search bar + faire une liste !!"/>
|
||||
|
||||
|
||||
</ScrollView>
|
||||
|
||||
|
||||
|
||||
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace MVVM.Pages;
|
||||
|
||||
public partial class FiltrePublication : ContentPage
|
||||
{
|
||||
public FiltrePublication()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
<?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="MVVM.Pages.Livres">
|
||||
|
||||
<ContentPage.ToolbarItems>
|
||||
<ToolbarItem IconImageSource="plus"/>
|
||||
<ToolbarItem Text="Mes livres"/>
|
||||
<ToolbarItem Text="Tous"/>
|
||||
<ToolbarItem IconImageSource="plus"/>
|
||||
<ToolbarItem IconImageSource="plus"/>
|
||||
</ContentPage.ToolbarItems>
|
||||
|
||||
|
||||
<ScrollView>
|
||||
|
||||
|
||||
<Label Text="Contenu"/>
|
||||
|
||||
</ScrollView>
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace MVVM.Pages;
|
||||
|
||||
public partial class Livres : ContentPage
|
||||
{
|
||||
public Livres()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
7609dde53d54b178da81552ac3ea849f76a4e86b
|
||||
fc034621ba626dde8b8ab88a07950ed065636621
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
6cc4a3f1-16db-45af-b11e-1be806db6a21
|
||||
d287131c-f15c-40f9-b955-93f160390b66
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue