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.
41 lines
1.7 KiB
41 lines
1.7 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="BookApp.ContentViews.MenuItem">
|
|
<toolkit:Expander>
|
|
<toolkit:Expander.Header>
|
|
<VerticalStackLayout>
|
|
<StackLayout Orientation="Horizontal" Spacing="12">
|
|
<Image Source="playlist.png"
|
|
HeightRequest="20"
|
|
HorizontalOptions="Start" />
|
|
<Label Text="Playlist"
|
|
FontAttributes="Bold"
|
|
FontSize="Medium" HorizontalOptions="Start" />
|
|
|
|
<Image Source="chevron.png"
|
|
HeightRequest="20"
|
|
HorizontalOptions="EndAndExpand"/>
|
|
</StackLayout>
|
|
|
|
<Line BackgroundColor="{StaticResource Key=Gray200 }" />
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
</toolkit:Expander.Header>
|
|
<HorizontalStackLayout Padding="10">
|
|
<Image Source="chevron.png"
|
|
Aspect="AspectFill"
|
|
HeightRequest="20"
|
|
WidthRequest="20" />
|
|
<Label Text="Baboons are African and Arabian Old World monkeys belonging to the genus Papio, part of the subfamily Cercopithecinae."
|
|
FontAttributes="Italic" />
|
|
</HorizontalStackLayout>
|
|
</toolkit:Expander>
|
|
|
|
|
|
</ContentView>
|
|
|