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.
29 lines
1.0 KiB
29 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"
|
|
xmlns:v="clr-namespace:BookApp.ContentViews"
|
|
x:Class="BookApp.ContentViews.ImageCard" >
|
|
|
|
|
|
<VerticalStackLayout>
|
|
<Frame Background="#EEE" HeightRequest="150" CornerRadius="5" WidthRequest="150">
|
|
|
|
<Image Source="book" Margin="0,0,0,0" HeightRequest="150" WidthRequest="150" />
|
|
|
|
|
|
|
|
<Frame.GestureRecognizers>
|
|
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped" />
|
|
</Frame.GestureRecognizers>
|
|
|
|
</Frame>
|
|
<Label HorizontalOptions="Start" Text="Know What I Mean?" FontSize="Subtitle" FontFamily="Arial"/>
|
|
<Label HorizontalOptions="Start" Text="Wayne Shorter" TextColor="Gray" FontSize="Caption" FontFamily="Arial"/>
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
|
|
</ContentView>
|
|
|