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.
85 lines
2.6 KiB
85 lines
2.6 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="ViewsApp.Views.Favoris"
|
|
Title="Favoris"
|
|
BackgroundColor="White">
|
|
|
|
<ScrollView>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
<Rectangle Grid.Row="0" Grid.Column="0"
|
|
BackgroundColor="#64C1FF"
|
|
WidthRequest="650"
|
|
HeightRequest="65"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="Start"
|
|
/>
|
|
|
|
|
|
<ImageButton Grid.Row="0" Grid.Column="0"
|
|
Source="logo.png"
|
|
WidthRequest="60"
|
|
HeightRequest="60"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="Start"
|
|
Clicked="GoToAccueilByLogoButton"
|
|
/>
|
|
|
|
<SearchBar Grid.Row="0" Grid.Column="1"
|
|
WidthRequest="175"
|
|
MaximumWidthRequest="175"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="Center"
|
|
Margin="40,5,0,0"
|
|
TextColor="White"
|
|
CancelButtonColor="White"
|
|
Placeholder="Rechercher ..."
|
|
PlaceholderColor="White"
|
|
VerticalTextAlignment="Center"
|
|
HorizontalTextAlignment="Start"
|
|
/>
|
|
|
|
<Image Grid.Row="0" Grid.Column="2"
|
|
Source="tri.png"
|
|
WidthRequest="60"
|
|
HeightRequest="60"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="Center"
|
|
Margin="100,0,0,0"
|
|
/>
|
|
|
|
<Image Grid.Row="0" Grid.Column="3"
|
|
Source="etoile.png"
|
|
WidthRequest="50"
|
|
HeightRequest="50"
|
|
Margin="0,5,0,0"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="End"
|
|
/>
|
|
|
|
|
|
|
|
<Button Grid.Row="1" Grid.Column="0"
|
|
WidthRequest="75"
|
|
HeightRequest="75"
|
|
BackgroundColor="Blue"
|
|
Clicked="GoToPartitionButton"/>
|
|
|
|
</Grid>
|
|
</ScrollView>
|
|
|
|
</ContentPage>
|