Files
HomePantry-MAUI/Views/Controls/ProductCard.xaml
T
2026-07-16 12:25:33 +02:00

15 lines
990 B
XML
Executable File

<?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="HomePantry.Views.Controls.ProductCard"
x:Name="this">
<Border StrokeShape="RoundRectangle 10" Padding="10" Margin="0,5">
<Grid RowDefinitions="auto, auto, auto">
<BoxView Color="{StaticResource PantryGreen}" HeightRequest="40" />
<Label Text="{Binding ProductName, Source={x:Reference this}}" TextColor="White" FontAttributes="Bold" FontSize="16" VerticalOptions="Center" Margin="12,0" />
<Label Grid.Row="1" Text="{Binding ProductInfo, Source={x:Reference this}}" FontSize="14" Margin="12,8,12,4" />
<Label Grid.Row="2" Text="{Binding ExpiryDate, Source={x:Reference this}}" TextColor="Gray" FontSize="12" Margin="12,0,12,8" />
</Grid>
</Border>
</ContentView>