diff --git a/Pages/MyListPage.xaml b/Pages/MyListPage.xaml index e24a5a2..796bba1 100644 --- a/Pages/MyListPage.xaml +++ b/Pages/MyListPage.xaml @@ -42,16 +42,16 @@ Direction="Row" Wrap="Wrap"> - - - - - - - - - - + + + + + + + + + + diff --git a/ShoopNCook.csproj b/ShoopNCook.csproj index 45ba08f..36a935f 100644 --- a/ShoopNCook.csproj +++ b/ShoopNCook.csproj @@ -1,138 +1,138 @@ - - - - net7.0-android;net7.0-ios;net7.0-maccatalyst - $(TargetFrameworks);net7.0-windows10.0.19041.0 - - - Exe - ShoopNCook - true - true - enable - - - ShoopNCook - - - com.companyname.shoopncook - bf17e1fe-a722-42f6-a24d-3327d351c924 - - - 1.0 - 1 - - 11.0 - 13.1 - 21.0 - 10.0.17763.0 - 10.0.17763.0 - 6.5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MyListPage.xaml - - - - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - - - - + + + + net7.0-android;net7.0-ios;net7.0-maccatalyst + $(TargetFrameworks);net7.0-windows10.0.19041.0 + + + Exe + ShoopNCook + true + true + enable + + + ShoopNCook + + + com.companyname.shoopncook + bf17e1fe-a722-42f6-a24d-3327d351c924 + + + 1.0 + 1 + + 11.0 + 13.1 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MyListPage.xaml + + + + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + + + + diff --git a/Views/StoredRecipeView.xaml b/Views/StoredRecipeView.xaml index 51afe4d..526ab3a 100644 --- a/Views/StoredRecipeView.xaml +++ b/Views/StoredRecipeView.xaml @@ -1,7 +1,8 @@ + x:Class="ShoopNCook.Views.StoredRecipeView" + xmlns:views="clr-namespace:ShoopNCook.Views"> - diff --git a/Views/StoredRecipeView.xaml.cs b/Views/StoredRecipeView.xaml.cs index ee12f7e..1eb7ae1 100644 --- a/Views/StoredRecipeView.xaml.cs +++ b/Views/StoredRecipeView.xaml.cs @@ -3,15 +3,14 @@ namespace ShoopNCook.Views; public partial class StoredRecipeView : ContentView { - public StoredRecipeView() : this(5, "Title", "Subtitle") + public StoredRecipeView() : this(5, "Title") { } - public StoredRecipeView(float note, string title, string subtitle) + public StoredRecipeView(float note, string title) { InitializeComponent(); Note = note; Title = title; - Subtitle = subtitle; } public float Note @@ -24,10 +23,6 @@ public partial class StoredRecipeView : ContentView set => TitleLabel.Text = value; } - public string Subtitle - { - set => SubtitleLabel.Text = value; - } private void SetNote(float note)