diff --git a/LivreLand/AppShell.xaml b/LivreLand/AppShell.xaml index 5929e08..7efe205 100644 --- a/LivreLand/AppShell.xaml +++ b/LivreLand/AppShell.xaml @@ -17,7 +17,7 @@ ContentTemplate="{DataTemplate view:TousView}" Icon="list_bullet.svg"/> MSBuild:Compile + + MSBuild:Compile + MSBuild:Compile + + MSBuild:Compile + MSBuild:Compile diff --git a/LivreLand/View/BibliothequeView.xaml b/LivreLand/View/BibliothequeView.xaml index 1c8c2f2..cb36a7d 100644 --- a/LivreLand/View/BibliothequeView.xaml +++ b/LivreLand/View/BibliothequeView.xaml @@ -44,128 +44,30 @@ ButtonIcon="tray_2_fill.png" ButtonNumber="45"/> - + - - - - - - - - - - - - - + - + - - - - - - - - - - - - - + - + - - - - - - - - - - - - - + - + - - - - - - - - - - - - - + + Grid.Row="6"> - - - - - - - - - - - - - + - + - - - - - - - - - - - - - + - + - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/LivreLand/View/ContentViews/DetailsLivreButtonView.xaml.cs b/LivreLand/View/ContentViews/DetailsLivreButtonView.xaml.cs new file mode 100644 index 0000000..6914d46 --- /dev/null +++ b/LivreLand/View/ContentViews/DetailsLivreButtonView.xaml.cs @@ -0,0 +1,23 @@ +namespace LivreLand.View.ContentViews; + +public partial class DetailsLivreButtonView : ContentView +{ + public static readonly BindableProperty ButtonTitleProperty = BindableProperty.Create(nameof(ButtonTitle), typeof(string), typeof(DetailsLivreButtonView), string.Empty); + public string ButtonTitle + { + get => (string)GetValue(DetailsLivreButtonView.ButtonTitleProperty); + set => SetValue(DetailsLivreButtonView.ButtonTitleProperty, value); + } + + public static readonly BindableProperty ButtonIconProperty = BindableProperty.Create(nameof(ButtonIcon), typeof(string), typeof(DetailsLivreButtonView), string.Empty); + public string ButtonIcon + { + get => (string)GetValue(DetailsLivreButtonView.ButtonIconProperty); + set => SetValue(DetailsLivreButtonView.ButtonIconProperty, value); + } + + public DetailsLivreButtonView() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/LivreLand/View/ContentViews/SeparatorCutStartView.xaml b/LivreLand/View/ContentViews/SeparatorCutStartView.xaml new file mode 100644 index 0000000..007ba40 --- /dev/null +++ b/LivreLand/View/ContentViews/SeparatorCutStartView.xaml @@ -0,0 +1,11 @@ + + + + + + diff --git a/LivreLand/View/ContentViews/SeparatorCutStartView.xaml.cs b/LivreLand/View/ContentViews/SeparatorCutStartView.xaml.cs new file mode 100644 index 0000000..169de98 --- /dev/null +++ b/LivreLand/View/ContentViews/SeparatorCutStartView.xaml.cs @@ -0,0 +1,9 @@ +namespace LivreLand.View.ContentViews; + +public partial class SeparatorCutStartView : ContentView +{ + public SeparatorCutStartView() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/LivreLand/View/DetailsLivreView.xaml b/LivreLand/View/DetailsLivreView.xaml index babcbe2..c134a41 100644 --- a/LivreLand/View/DetailsLivreView.xaml +++ b/LivreLand/View/DetailsLivreView.xaml @@ -1,32 +1,243 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/LivreLand/View/HeaderHome.xaml b/LivreLand/View/HeaderHome.xaml index db60b00..ebd81e4 100644 --- a/LivreLand/View/HeaderHome.xaml +++ b/LivreLand/View/HeaderHome.xaml @@ -10,7 +10,6 @@ VerticalOptions="Center" TextColor="Red" FontAttributes="Bold" - BackgroundColor="Transparent" Grid.Column="0"/> + +