|
|
|
@ -2,19 +2,24 @@
|
|
|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
|
xmlns:local="clr-namespace:MangaMap"
|
|
|
|
|
xmlns:modeles="clr-namespace:MangaMap.Model"
|
|
|
|
|
x:Class="MangaMap.Views.homePage">
|
|
|
|
|
|
|
|
|
|
<ContentPage.BindingContext>
|
|
|
|
|
<modeles:Manager/>
|
|
|
|
|
</ContentPage.BindingContext>
|
|
|
|
|
|
|
|
|
|
<Grid RowDefinitions="40, *">
|
|
|
|
|
<local:NewContent1 HeightRequest="40" VerticalOptions="Start" Padding="10, 0"/>
|
|
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
|
BackgroundColor="#1E1E1E"
|
|
|
|
|
Grid.Row="1">
|
|
|
|
|
<VerticalStackLayout
|
|
|
|
|
<VerticalStackLayout
|
|
|
|
|
Spacing="70"
|
|
|
|
|
VerticalOptions="Center">
|
|
|
|
|
|
|
|
|
|
<SearchBar Placeholder="Recherche"
|
|
|
|
|
<SearchBar Placeholder="Recherche"
|
|
|
|
|
CancelButtonColor="Orange"
|
|
|
|
|
TextColor="Black"
|
|
|
|
|
BackgroundColor="White"
|
|
|
|
@ -22,32 +27,32 @@
|
|
|
|
|
Margin="30"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<HorizontalStackLayout
|
|
|
|
|
<HorizontalStackLayout
|
|
|
|
|
Spacing="100"
|
|
|
|
|
HorizontalOptions="Center">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
|
<ImageButton
|
|
|
|
|
Style="{StaticResource ImageAnime}"
|
|
|
|
|
BackgroundColor="Red"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
|
<ImageButton
|
|
|
|
|
Style="{StaticResource ImageAnime}"
|
|
|
|
|
BackgroundColor="Orange"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
|
<ImageButton
|
|
|
|
|
Style="{StaticResource ImageAnime}"
|
|
|
|
|
BackgroundColor="Blue"/>
|
|
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
|
<ImageButton
|
|
|
|
|
Style="{StaticResource ImageAnime}"
|
|
|
|
|
BackgroundColor="Purple"/>
|
|
|
|
|
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
|
|
|
|
|
<HorizontalStackLayout
|
|
|
|
|
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
|
|
|
|
|
<HorizontalStackLayout
|
|
|
|
|
Spacing="100"
|
|
|
|
|
HorizontalOptions="Center">
|
|
|
|
|
|
|
|
|
@ -67,8 +72,8 @@
|
|
|
|
|
<ImageButton
|
|
|
|
|
Style="{StaticResource ImageAnime}"
|
|
|
|
|
BackgroundColor="Yellow"/>
|
|
|
|
|
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
|
|
|
|
|
<HorizontalStackLayout
|
|
|
|
|
Spacing="100"
|
|
|
|
@ -90,8 +95,8 @@
|
|
|
|
|
<ImageButton
|
|
|
|
|
Style="{StaticResource ImageAnime}"
|
|
|
|
|
BackgroundColor="Purple"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
|
|
|
|
|
<HorizontalStackLayout
|
|
|
|
@ -117,9 +122,19 @@
|
|
|
|
|
BackgroundColor="Yellow"/>
|
|
|
|
|
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ListView x:Name="a1" ItemsSource="{Binding Utilisateur}">
|
|
|
|
|
<ListView.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<ViewCell>
|
|
|
|
|
<Label Text="{Binding Pseudo}" TextColor="White" FontSize="Header"/>
|
|
|
|
|
</ViewCell>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</ListView.ItemTemplate>
|
|
|
|
|
</ListView>
|
|
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
</Grid>
|
|
|
|
|
</ContentPage>
|