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.
35 lines
1.3 KiB
35 lines
1.3 KiB
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="MangaMap.Views.listPage"
|
|
BackgroundColor="Black">
|
|
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Frame Grid.Row="0" BackgroundColor="Black" Margin="20" BorderColor="Black">
|
|
<Label Text="Watching" TextColor="White" FontSize="Title" />
|
|
</Frame>
|
|
|
|
<Frame Grid.Row="1" BackgroundColor="Black" Margin="20" BorderColor="Black">
|
|
<Grid BackgroundColor="#333333" >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Frame Grid.Row="1" BackgroundColor="#333333" Margin="20" BorderColor="#333333">
|
|
<StackLayout Orientation="Horizontal" Spacing="20">
|
|
<Label Text="Titre" TextColor="White"/>
|
|
<Label Text="Score" TextColor="White"/>
|
|
<Label Text="Progression" TextColor="White"/>
|
|
</StackLayout>
|
|
</Frame>
|
|
</Grid>
|
|
</Frame>
|
|
</Grid>
|
|
|
|
</ContentPage> |