From 461f50d02d99cd21e927ebe44faaef5129b9caa3 Mon Sep 17 00:00:00 2001 From: Leo TUAILLON Date: Mon, 3 Apr 2023 11:47:36 +0200 Subject: [PATCH] ScrollViews on recipe --- AppShell.xaml | 2 +- ShoopNCook.csproj | 3 +++ Views/HomePage.xaml | 53 ++++++++++++++++++++++++++++++++++++++++++ Views/HomePage.xaml.cs | 9 +++++++ 4 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 Views/HomePage.xaml create mode 100644 Views/HomePage.xaml.cs diff --git a/AppShell.xaml b/AppShell.xaml index f63ee1e..a9459a2 100644 --- a/AppShell.xaml +++ b/AppShell.xaml @@ -11,7 +11,7 @@ + + MSBuild:Compile + MSBuild:Compile diff --git a/Views/HomePage.xaml b/Views/HomePage.xaml new file mode 100644 index 0000000..66fa5d1 --- /dev/null +++ b/Views/HomePage.xaml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Views/HomePage.xaml.cs b/Views/HomePage.xaml.cs new file mode 100644 index 0000000..c3b88c4 --- /dev/null +++ b/Views/HomePage.xaml.cs @@ -0,0 +1,9 @@ +namespace ShoopNCook.Views; + +public partial class HomePage : ContentPage +{ + public HomePage() + { + InitializeComponent(); + } +} \ No newline at end of file