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.
58 lines
3.1 KiB
58 lines
3.1 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="Ohara.PageFavoris"
|
|
Title="PageFavoris"
|
|
Appearing="ContentPage_Appearing"
|
|
BackgroundColor="#e2edf1">
|
|
|
|
<ScrollView>
|
|
<VerticalStackLayout>
|
|
<Grid ColumnDefinitions="*" BackgroundColor="#72a3b3" Padding="10">
|
|
<SearchBar x:Name="searchBar" Placeholder="Rechercher..." Style="{StaticResource searchBarOhara}" HorizontalOptions="Center" WidthRequest="300"/>
|
|
|
|
</Grid>
|
|
<FlexLayout x:Name="listeFav" AlignItems="Center" Wrap="Wrap"
|
|
HorizontalOptions="Center" JustifyContent="SpaceEvenly"
|
|
>
|
|
<BindableLayout.ItemTemplate>
|
|
<DataTemplate>
|
|
<Frame Style="{StaticResource frameObjet}" Margin="0,10,0,0" >
|
|
<Frame.GestureRecognizers>
|
|
<TapGestureRecognizer CommandParameter="{Binding Nom}" Tapped="TapGestureRecognizer_Tapped"/>
|
|
</Frame.GestureRecognizers>
|
|
<StackLayout Orientation="Vertical" Padding="5">
|
|
<Image
|
|
Source="{Binding Image}"
|
|
HeightRequest="280"
|
|
WidthRequest="280" />
|
|
<Label
|
|
HorizontalOptions="Center"
|
|
VerticalOptions="Start"
|
|
HorizontalTextAlignment="Center"
|
|
Text="{Binding Nom}"
|
|
FontSize="19"
|
|
TextColor="#72a3b3"
|
|
FontAttributes="Bold" />
|
|
</StackLayout>
|
|
</Frame>
|
|
</DataTemplate>
|
|
</BindableLayout.ItemTemplate>
|
|
<BindableLayout.EmptyView>
|
|
<ContentView>
|
|
<StackLayout HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand">
|
|
<Label Text="Vous n'avez pas encore ajoutez d'objets à vos favoris ..."
|
|
TextColor="#72a3b3"
|
|
FontAttributes="Bold"
|
|
Margin="50"
|
|
FontSize="18"
|
|
HorizontalOptions="Fill"
|
|
HorizontalTextAlignment="Center"/>
|
|
</StackLayout>
|
|
</ContentView>
|
|
</BindableLayout.EmptyView>
|
|
</FlexLayout>
|
|
</VerticalStackLayout>
|
|
|
|
</ScrollView>
|
|
</ContentPage> |