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.
46 lines
2.0 KiB
46 lines
2.0 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
xmlns:local="clr-namespace:Views"
|
|
x:Class="Views.Home">
|
|
|
|
<local:ContainerWithHeader>
|
|
<local:ContainerWithHeader.MyContent>
|
|
|
|
<ScrollView>
|
|
<StackLayout>
|
|
<Label Text="Suggestions" TextColor="{StaticResource Secondary}"
|
|
FontSize="32" FontAttributes="Bold" Padding="15"/>
|
|
|
|
<!-- Master recipes -->
|
|
<FlexLayout
|
|
Margin="0, 15"
|
|
Wrap="Wrap"
|
|
JustifyContent="SpaceEvenly"
|
|
AlignItems="Center"
|
|
AlignContent="SpaceEvenly">
|
|
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
<BoxView Style="{StaticResource boxView1}"/>
|
|
|
|
</FlexLayout>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
|
|
</local:ContainerWithHeader.MyContent>
|
|
</local:ContainerWithHeader>
|
|
|
|
</ContentPage>
|