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.0 KiB
26 lines
1.0 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="8"
|
|
BackgroundColor="{AppThemeBinding Light={StaticResource Background}, Dark={StaticResource BackgroundDark}}">
|
|
<Image x:Name="IconImage"
|
|
WidthRequest="24"
|
|
HeightRequest="24"
|
|
Margin="0, 0, 8, 0"
|
|
HorizontalOptions="Start" />
|
|
<Label x:Name="CategoryLabel"
|
|
FontSize="16"
|
|
TextColor="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource PrimaryDark}}"
|
|
HorizontalOptions="StartAndExpand" />
|
|
<Image Source="icon_chevron_right.png"
|
|
WidthRequest="24"
|
|
HeightRequest="24"
|
|
Margin="8, 0, 0, 0"
|
|
HorizontalOptions="End" />
|
|
</StackLayout>
|
|
|
|
</ContentView>
|