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.
66 lines
2.4 KiB
66 lines
2.4 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:v="clr-namespace:BookApp.ContentViews"
|
|
x:Class="BookApp.ContentViews.Player">
|
|
<VerticalStackLayout HorizontalOptions="CenterAndExpand" >
|
|
|
|
|
|
|
|
|
|
<Frame Background="#EEE" Padding="10" Margin="12" HeightRequest="250" CornerRadius="20" WidthRequest="250">
|
|
<Image Source="book" Margin="0,0,10,0" HeightRequest="250" WidthRequest="250" />
|
|
<Frame.GestureRecognizers>
|
|
<TapGestureRecognizer />
|
|
</Frame.GestureRecognizers>
|
|
</Frame>
|
|
|
|
<Label HorizontalOptions="Center" Text="Know What I Mean?" FontSize="Title" FontFamily="Arial"/>
|
|
<Label HorizontalOptions="Center" Text="Wayne Shorter" TextColor="OrangeRed" FontSize="Title" FontFamily="Arial"/>
|
|
|
|
<v:DetailsType />
|
|
|
|
|
|
<Grid Padding="15" ColumnSpacing="12">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Frame Style="{StaticResource Key=FramePlayer}" >
|
|
<HorizontalStackLayout>
|
|
<Image Source="play" HeightRequest="20" Margin="0,0,10,0" />
|
|
<Label Text="Lecture" TextColor="{StaticResource Key=RedMusic}" />
|
|
</HorizontalStackLayout>
|
|
<Frame.GestureRecognizers>
|
|
<TapGestureRecognizer />
|
|
</Frame.GestureRecognizers>
|
|
|
|
</Frame>
|
|
|
|
<Frame Grid.Column="1" Style="{StaticResource Key=FramePlayer}" >
|
|
|
|
|
|
|
|
<HorizontalStackLayout>
|
|
<Image Source="random" HeightRequest="20" Margin="0,0,10,0" />
|
|
<Label Text="Aléatoire" TextColor="{StaticResource Key=RedMusic}"/>
|
|
|
|
</HorizontalStackLayout>
|
|
<Frame.GestureRecognizers>
|
|
<TapGestureRecognizer />
|
|
</Frame.GestureRecognizers>
|
|
|
|
</Frame>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
</ContentView>
|