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.0 KiB
41 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"
|
|
x:Class="ShoopNCook.Views.RecipeView">
|
|
|
|
|
|
<Border
|
|
StrokeShape="RoundRectangle 30"
|
|
Stroke="Transparent">
|
|
|
|
<Grid
|
|
BackgroundColor="{StaticResource BackgroundSecondary}"
|
|
Padding="10"
|
|
MinimumHeightRequest="175"
|
|
MinimumWidthRequest="150"
|
|
RowDefinitions="*, Auto">
|
|
<Border
|
|
Grid.Row="0"
|
|
Stroke="Transparent"
|
|
StrokeShape="RoundRectangle 20"
|
|
BackgroundColor="AliceBlue">
|
|
<Image/>
|
|
</Border>
|
|
|
|
<VerticalStackLayout Grid.Row="1">
|
|
<Label
|
|
TextColor="{StaticResource TextColorPrimary}"
|
|
Text="Recipe Name"/>
|
|
<Label
|
|
TextColor="{StaticResource TextColorSecondary}"
|
|
Text="Preparation time"/>
|
|
</VerticalStackLayout>
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
</Border>
|
|
|
|
</ContentView>
|