parent
382bb13650
commit
7d840a486d
@ -0,0 +1,6 @@
|
||||
<?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="ShoopNCook.Views.OwnedRecipeView">
|
||||
|
||||
</ContentView>
|
@ -0,0 +1,14 @@
|
||||
namespace ShoopNCook.Views;
|
||||
|
||||
public partial class OwnedRecipeView : ContentView
|
||||
{
|
||||
|
||||
private readonly RecipeView recipeView;
|
||||
|
||||
public OwnedRecipeView(float note, string title, string subtitle)
|
||||
{
|
||||
recipeView = new RecipeView(note, title, subtitle);
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue