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.
52 lines
2.0 KiB
52 lines
2.0 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:local="clr-namespace:Views"
|
|
x:Class="Views.MyPosts"
|
|
Title="MyPosts">
|
|
|
|
<local:ContainerBase
|
|
IsNotConnected="False">
|
|
|
|
<local:ContainerBase.MyFlyoutContent>
|
|
|
|
<Grid RowDefinitions="300, *, *" VerticalOptions="Fill">
|
|
<Button Text="Mon profil" Style="{StaticResource button1}" Grid.Row="1"/>
|
|
<Button Text="Modifier mon profil" Style="{StaticResource button1}" Grid.Row="2"/>
|
|
</Grid>
|
|
|
|
</local:ContainerBase.MyFlyoutContent>
|
|
|
|
<local:ContainerBase.MyContent>
|
|
|
|
<ScrollView>
|
|
<StackLayout>
|
|
<Label Text="Mon profil" TextColor="Black" FontAttributes="Bold"
|
|
FontSize="24" Padding="15, 15, 20, 5"/>
|
|
<Label Text="Mes publications" TextColor="Black"
|
|
FontSize="20" Padding="15"/>
|
|
|
|
<FlexLayout
|
|
Margin="0, 15"
|
|
Wrap="Wrap"
|
|
JustifyContent="Start"
|
|
AlignItems="Center"
|
|
AlignContent="SpaceEvenly"
|
|
HorizontalOptions="Center">
|
|
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
|
|
</FlexLayout>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
|
|
</local:ContainerBase.MyContent>
|
|
|
|
</local:ContainerBase>
|
|
|
|
</ContentPage>
|