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.1 KiB
26 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"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
x:Class="AppleMusicApp.Views.LibraryMenuView">
|
|
<StackLayout Orientation="Horizontal" Padding="20,10,10,10">
|
|
<Image HorizontalOptions="Start"
|
|
x:Name="IconName"
|
|
Source="icon_playlists"
|
|
WidthRequest="20"
|
|
HeightRequest="20">
|
|
<Image.Behaviors>
|
|
<toolkit:IconTintColorBehavior TintColor="{StaticResource Primary}" />
|
|
</Image.Behaviors>
|
|
</Image>
|
|
|
|
<Label Padding="10,0,0,0" HorizontalOptions="StartAndExpand" Text="Playlists" FontSize="Body"/>
|
|
|
|
<Image HorizontalOptions="End" Source="icon_chevron_right.png" WidthRequest="15" HeightRequest="15">
|
|
<Image.Behaviors>
|
|
<toolkit:IconTintColorBehavior TintColor="Gray" />
|
|
</Image.Behaviors>
|
|
</Image>
|
|
</StackLayout>
|
|
</ContentView> |