Suite listPage

pull/1/head
Matheo HERSAN 2 years ago
parent 35b51bfc52
commit 416a15681d

@ -2,15 +2,32 @@
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MangaMap.Views.listPage" x:Class="MangaMap.Views.listPage"
BackgroundColor="{StaticResource Secondary}"> BackgroundColor="{StaticResource Secondary}"
<ScrollView> NavigationPage.HasNavigationBar="False">
<Grid>
<Grid.Background>
<SolidColorBrush Color="#1E1E1E" /> <Grid >
</Grid.Background> <Grid.RowDefinitions>
<Label Text="Watching" TextColor="white "/> <RowDefinition Height="Auto" />
<Rectangle WidthRequest="1300" HeightRequest="550" Fill="#333333" Margin="20" RadiusX="15" /> <RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Label Grid.Row="0" Text="Watching" TextColor="White" FontSize="Title" Margin="20" />
<Grid Grid.Row="1">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Rectangle Grid.Row="0" Grid.Column="0" Fill="#333333" Margin="20" RadiusX="15" RadiusY="15"/>
</Grid> </Grid>
</ScrollView>
<BoxView Grid.Row="2" HeightRequest="30" BackgroundColor="#333333" />
</Grid>
</ContentPage> </ContentPage>

@ -11,4 +11,5 @@
<Button Text="Connexion/Inscription" Clicked="OnLoginClicked" BackgroundColor="{StaticResource Primary}"/> <Button Text="Connexion/Inscription" Clicked="OnLoginClicked" BackgroundColor="{StaticResource Primary}"/>
</StackLayout> </StackLayout>
</ContentPage> </ContentPage>
Loading…
Cancel
Save