|
|
|
@ -1,7 +1,8 @@
|
|
|
|
|
<?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="ShoopNCook.Views.OwnedRecipeView">
|
|
|
|
|
x:Class="ShoopNCook.Views.OwnedRecipeView"
|
|
|
|
|
Margin="6,2">
|
|
|
|
|
<Border
|
|
|
|
|
Style="{StaticResource SecondaryBorderShadow}"
|
|
|
|
|
StrokeShape="RoundRectangle 30">
|
|
|
|
@ -11,6 +12,8 @@
|
|
|
|
|
Padding="10"
|
|
|
|
|
MinimumHeightRequest="175"
|
|
|
|
|
MinimumWidthRequest="150"
|
|
|
|
|
MaximumHeightRequest="175"
|
|
|
|
|
MaximumWidthRequest="150"
|
|
|
|
|
RowDefinitions="*, Auto">
|
|
|
|
|
|
|
|
|
|
<Grid.GestureRecognizers>
|
|
|
|
@ -25,7 +28,12 @@
|
|
|
|
|
StrokeShape="RoundRectangle 20"
|
|
|
|
|
BackgroundColor="{StaticResource ImageBackground}">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Image x:Name="RecipeImage" />
|
|
|
|
|
<Image x:Name="RecipeImage"
|
|
|
|
|
MinimumHeightRequest="175"
|
|
|
|
|
MinimumWidthRequest="150"
|
|
|
|
|
MaximumHeightRequest="175"
|
|
|
|
|
MaximumWidthRequest="150"
|
|
|
|
|
Aspect="AspectFill"/>
|
|
|
|
|
<HorizontalStackLayout
|
|
|
|
|
x:Name="Stars"
|
|
|
|
|
VerticalOptions="End"
|
|
|
|
|