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.
66 lines
2.1 KiB
66 lines
2.1 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"
|
|
x:Class="ShoopNCook.Pages.CreateRecipePage"
|
|
Title="CreateRecipePage"
|
|
BackgroundColor="{StaticResource BackgroundPrimary}">
|
|
<Grid
|
|
RowDefinitions="Auto, Auto, *"
|
|
Padding="20, 30, 20, 0">
|
|
<!-- Header label and return button -->
|
|
<HorizontalStackLayout
|
|
Grid.Row="0"
|
|
MaximumHeightRequest="60">
|
|
|
|
<ImageButton
|
|
HeightRequest="50"
|
|
WidthRequest="50"
|
|
Source="arrow_back.svg"
|
|
HorizontalOptions="Start"/>
|
|
|
|
<Label
|
|
Text="Create new recipe"
|
|
Style="{StaticResource h3}"
|
|
FontSize="20"
|
|
VerticalTextAlignment="Center"/>
|
|
</HorizontalStackLayout>
|
|
|
|
<!--Image display and upload button-->
|
|
<Grid
|
|
Grid.Row="1"
|
|
RowDefinitions="Auto">
|
|
<Border
|
|
Grid.Row="0"
|
|
BackgroundColor="{StaticResource ImageBackground}"
|
|
Stroke="White"
|
|
StrokeThickness="2"
|
|
StrokeShape="RoundRectangle 25">
|
|
<Image
|
|
x:Name="RecipeImage"
|
|
HeightRequest="250"/>
|
|
</Border>
|
|
<Border
|
|
Grid.Row="0"
|
|
BackgroundColor="{StaticResource Selected}"
|
|
Stroke="White"
|
|
StrokeThickness="2"
|
|
StrokeShape="RoundRectangle 200"
|
|
WidthRequest="50"
|
|
HeightRequest="50"
|
|
HorizontalOptions="End"
|
|
VerticalOptions="End"
|
|
TranslationY="20"
|
|
TranslationX="-20">
|
|
<ImageButton
|
|
Source="edit.svg"
|
|
WidthRequest="30"
|
|
/>
|
|
</Border>
|
|
</Grid>
|
|
|
|
<Entry
|
|
Style="{StaticResource UserInput}"
|
|
Placeholder="Specify your recipe name"/>
|
|
</Grid>
|
|
|
|
</ContentPage> |