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.

21 lines
1.1 KiB

<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="PocketBook.ContentViewBook"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
xmlns:local="clr-namespace:PocketBook">
<VerticalStackLayout Margin="15,0,0,0">
<StackLayout Orientation="Horizontal" Margin="0,5,0,0">
<Image x:Name="bookImage" Margin="0,0,10,0" WidthRequest="75" HeightRequest="110"/>
<StackLayout Orientation="Vertical">
<Label x:Name="bookName" FontFamily="Pro-Text-Bold" FontAttributes="Bold"/>
<Label x:Name="autorName" FontFamily="Pro-Text-Semibold" FontSize="12"/>
<Label x:Name="bookStatus" FontFamily="Pro-Text-Semibold" FontSize="12" TextColor="#AFAFAF"/>
<StackLayout Orientation="Horizontal" Margin="0,30,0,0">
<local:Stars NbStars="1" Margin="0,0,0,5"/>
</StackLayout>
</StackLayout>
</StackLayout>
</VerticalStackLayout>
</ContentView>