parent
0a62c5f3e5
commit
6733ddb544
@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="LivreLand.View.ContentViews.PopupHomePlusButtonView">
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="auto"/>
|
||||
<RowDefinition Height="auto"/>
|
||||
<RowDefinition Height="auto"/>
|
||||
<RowDefinition Height="10 "/>
|
||||
<RowDefinition Height="auto"/>
|
||||
<RowDefinition Height="auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<Grid Grid.Row="0">
|
||||
<Label Text="Ajouter un livre"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="1">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="auto"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<Label Text="Scanner un code-barres"
|
||||
Grid.Column="0"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="2">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="auto"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<Label Text="Scanner des codes-barres"
|
||||
Grid.Column="0"/>
|
||||
</Grid>
|
||||
|
||||
<Grid BackgroundColor="{DynamicResource HeaderGray}"
|
||||
Grid.Row="3"/>
|
||||
|
||||
<Grid Grid.Row="4">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="auto"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<Label Text="Rechercher en ligne"
|
||||
Grid.Column="0"/>
|
||||
<Image Source="magnifying_glass.png"
|
||||
Grid.Column="2"/>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Row="5">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="auto"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<Label Text="Saisir l'ISBN"
|
||||
Grid.Column="0"/>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</ContentView>
|
@ -0,0 +1,9 @@
|
||||
namespace LivreLand.View.ContentViews;
|
||||
|
||||
public partial class PopupHomePlusButtonView : ContentView
|
||||
{
|
||||
public PopupHomePlusButtonView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="LivreLand.View.ContentViews.SearchBarView">
|
||||
|
||||
<Grid>
|
||||
<SearchBar/>
|
||||
</Grid>
|
||||
|
||||
</ContentView>
|
@ -0,0 +1,9 @@
|
||||
namespace LivreLand.View.ContentViews;
|
||||
|
||||
public partial class SearchBarView : ContentView
|
||||
{
|
||||
public SearchBarView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="LivreLand.View.ContentViews.SeparatorBigCutStartView">
|
||||
<Grid>
|
||||
<BoxView Color="{DynamicResource Gray}"
|
||||
Margin="40,0,0,0"
|
||||
HeightRequest="1"
|
||||
HorizontalOptions="Fill"/>
|
||||
</Grid>
|
||||
</ContentView>
|
@ -0,0 +1,9 @@
|
||||
namespace LivreLand.View.ContentViews;
|
||||
|
||||
public partial class SeparatorBigCutStartView : ContentView
|
||||
{
|
||||
public SeparatorBigCutStartView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="LivreLand.View.ContentViews.SeparatorEntireView">
|
||||
<Grid>
|
||||
<BoxView Color="{DynamicResource HeaderSeparatorGray}"
|
||||
HeightRequest="1"
|
||||
HorizontalOptions="Fill"/>
|
||||
</Grid>
|
||||
</ContentView>
|
@ -0,0 +1,9 @@
|
||||
namespace LivreLand.View.ContentViews;
|
||||
|
||||
public partial class SeparatorEntireView : ContentView
|
||||
{
|
||||
public SeparatorEntireView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -1,12 +1,45 @@
|
||||
<?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"
|
||||
xmlns:view="clr-namespace:LivreLand.View"
|
||||
xmlns:contentView="clr-namespace:LivreLand.View.ContentViews"
|
||||
x:Class="LivreLand.View.FiltrageAuteurView"
|
||||
Title="FiltrageAuteurView">
|
||||
<VerticalStackLayout>
|
||||
<Label
|
||||
Text="Welcome to .NET MAUI!"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center" />
|
||||
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="auto"/>
|
||||
<RowDefinition Height="10"/>
|
||||
<RowDefinition Height="auto"/>
|
||||
<RowDefinition Height="10"/>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<view:HeaderPage Grid.Row="0"
|
||||
HeaderTitle="Auteur"
|
||||
HeaderBackButtonText="Mes livres"
|
||||
HeaderPlusButtonVisible="False"
|
||||
HeaderSwitchButtonVisible="True"/>
|
||||
|
||||
<VerticalStackLayout BackgroundColor="{DynamicResource Light}"
|
||||
Grid.Row="2">
|
||||
<contentView:SeparatorEntireView/>
|
||||
|
||||
<contentView:SearchBarView Grid.Row="2"/>
|
||||
</VerticalStackLayout>
|
||||
|
||||
<ScrollView Grid.Row="4">
|
||||
<VerticalStackLayout Grid.Row="2">
|
||||
<contentView:SeparatorEntireView/>
|
||||
|
||||
<!--Alain Damasio-->
|
||||
<contentView:HomeButtonView ButtonTitle="Alain Damasio"
|
||||
ButtonIcon="book_fill.png"
|
||||
ButtonNumber="2"/>
|
||||
|
||||
<contentView:SeparatorBigCutStartView/>
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
</Grid>
|
||||
|
||||
</ContentPage>
|
@ -1,12 +1,44 @@
|
||||
<?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"
|
||||
xmlns:view="clr-namespace:LivreLand.View"
|
||||
xmlns:contentView="clr-namespace:LivreLand.View.ContentViews"
|
||||
x:Class="LivreLand.View.FiltrageDateView"
|
||||
Title="FiltrageDateView">
|
||||
<VerticalStackLayout>
|
||||
<Label
|
||||
Text="Welcome to .NET MAUI!"
|
||||
VerticalOptions="Center"
|
||||
HorizontalOptions="Center" />
|
||||
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="auto"/>
|
||||
<RowDefinition Height="10"/>
|
||||
<RowDefinition Height="auto"/>
|
||||
<RowDefinition Height="10"/>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<view:HeaderPage Grid.Row="0"
|
||||
HeaderTitle="Date de publication"
|
||||
HeaderPlusButtonVisible="False"
|
||||
HeaderSwitchButtonVisible="True"/>
|
||||
|
||||
<VerticalStackLayout BackgroundColor="{DynamicResource Light}"
|
||||
Grid.Row="2">
|
||||
<contentView:SeparatorEntireView/>
|
||||
|
||||
<contentView:SearchBarView Grid.Row="2"/>
|
||||
</VerticalStackLayout>
|
||||
|
||||
<ScrollView Grid.Row="4">
|
||||
<VerticalStackLayout Grid.Row="2">
|
||||
<contentView:SeparatorEntireView/>
|
||||
|
||||
<!--2022-->
|
||||
<contentView:HomeButtonView ButtonTitle="2022"
|
||||
ButtonIcon="book_fill.png"
|
||||
ButtonNumber="1"/>
|
||||
|
||||
<contentView:SeparatorBigCutStartView/>
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
</Grid>
|
||||
|
||||
</ContentPage>
|
Loading…
Reference in new issue