Files
2024-08-31 12:07:21 +03:00

28 lines
898 B
XML

<?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="TechTitans.Views.Components.SongItem"
>
<HorizontalStackLayout>
<Image
Source="{Binding Image}"
HeightRequest="64"
Aspect="AspectFit"
/>
<VerticalStackLayout Padding="10,0">
<Label
Text="{Binding Name}"
VerticalOptions="Center"
HorizontalOptions="Start"
FontSize="24"
/>
<Label
Text="{Binding Artist}"
VerticalOptions="Center"
HorizontalOptions="Start"
FontSize="16"
/>
</VerticalStackLayout>
</HorizontalStackLayout>
</ContentView>