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.

26 lines
1.2 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="AMC.View.Controls.LibraryCategoryItem">
<StackLayout Orientation="Horizontal"
Padding="{StaticResource SpaceXS}"
BackgroundColor="{AppThemeBinding Light={StaticResource Background}, Dark={StaticResource BackgroundDark}}">
<Image x:Name="IconImage"
WidthRequest="{StaticResource SpaceM}"
HeightRequest="{StaticResource SpaceM}"
Margin="{StaticResource RightSpaceLittle}"
HorizontalOptions="Start" />
<Label x:Name="CategoryLabel"
FontSize="{StaticResource SubSubtitleFontSize}"
TextColor="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource PrimaryDark}}"
HorizontalOptions="StartAndExpand" />
<Image Source="icon_chevron_right.png"
WidthRequest="{StaticResource SpaceM}"
HeightRequest="{StaticResource SpaceM}"
Margin="{StaticResource LeftSpaceLittle}"
HorizontalOptions="End" />
</StackLayout>
</ContentView>