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.
45 lines
1.2 KiB
45 lines
1.2 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"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
x:Class="Vues.SearchMob"
|
|
>
|
|
<toolkit:DockLayout>
|
|
|
|
|
|
|
|
<VerticalStackLayout
|
|
BackgroundColor="#153f5d"
|
|
toolkit:DockLayout.DockPosition="Left"
|
|
WidthRequest="350">
|
|
|
|
<Button Text="déconnexion"
|
|
FontSize="10"
|
|
BackgroundColor="#6193b7"/>
|
|
|
|
<SearchBar Placeholder="Rechercher un monstre"
|
|
PlaceholderColor="DimGray"
|
|
CancelButtonColor="DimGray"/>
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
<VerticalStackLayout
|
|
BackgroundColor="#6193b7"
|
|
toolkit:DockLayout.DockPosition="Right"
|
|
WidthRequest="600">
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
<VerticalStackLayout
|
|
BackgroundColor="#6193b7"
|
|
toolkit:DockLayout.DockPosition="Top">
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</toolkit:DockLayout>
|
|
</ContentPage> |