refactor misspelled solution and assembly 'ShoopNCook' to 'ShopNCook'
continuous-integration/drone/push Build is passing Details

master
Maxime BATISTA 2 years ago
parent 629d2f3cb1
commit 6b91eb0913

@ -1,8 +1,8 @@
<?xml version = "1.0" encoding = "UTF-8" ?> <?xml version = "1.0" encoding = "UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ShoopNCook" xmlns:local="clr-namespace:ShopNCook"
x:Class="ShoopNCook.App"> x:Class="ShopNCook.App">
<Application.Resources> <Application.Resources>
<ResourceDictionary> <ResourceDictionary>
<ResourceDictionary.MergedDictionaries> <ResourceDictionary.MergedDictionaries>

@ -1,4 +1,4 @@
namespace ShoopNCook; namespace ShopNCook;
using Models; using Models;
using Services; using Services;
using LocalServices; using LocalServices;

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<Shell <Shell
x:Class="ShoopNCook.ConnectAppShell" x:Class="ShopNCook.ConnectAppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:pages="clr-namespace:ShoopNCook.Pages" xmlns:pages="clr-namespace:ShopNCook.Pages"
Shell.FlyoutBehavior="Disabled" Shell.FlyoutBehavior="Disabled"
Shell.NavBarIsVisible="False" Shell.NavBarIsVisible="False"
Shell.TabBarBackgroundColor="White" Shell.TabBarBackgroundColor="White"

@ -1,9 +1,8 @@
namespace ShoopNCook; namespace ShopNCook;
using Microsoft.Maui.Controls; using Microsoft.Maui.Controls;
using Models;
using Services; using Services;
using ShoopNCook.Controllers; using ShopNCook.Controllers;
using ShoopNCook.Pages; using ShopNCook.Pages;
// Shell pour la phase de connexion de l'application // Shell pour la phase de connexion de l'application

@ -1,6 +1,6 @@
using Models; using Models;
namespace ShoopNCook namespace ShopNCook
{ {
// Interface définissant un observateur de connexion. // Interface définissant un observateur de connexion.
// Tout objet implémentant cette interface doit définir la méthode OnAccountConnected(). // Tout objet implémentant cette interface doit définir la méthode OnAccountConnected().

@ -1,7 +1,7 @@
using Services; using Services;
using Models; using Models;
namespace ShoopNCook.Controllers namespace ShopNCook.Controllers
{ {
public class ConnectionController : LoginController, RegisterController public class ConnectionController : LoginController, RegisterController
{ {

@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace ShoopNCook.Controllers namespace ShopNCook.Controllers
{ {
public interface LoginController public interface LoginController
{ {

@ -1,8 +1,8 @@
using Services; using Services;
using Models; using Models;
using ShoopNCook.Pages; using ShopNCook.Pages;
namespace ShoopNCook.Controllers namespace ShopNCook.Controllers
{ {
public class MorePageController public class MorePageController
{ {

@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace ShoopNCook.Controllers namespace ShopNCook.Controllers
{ {
public interface RegisterController public interface RegisterController
{ {

@ -5,7 +5,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace ShoopNCook namespace ShopNCook
{ {
// Interface définissant une application. // Interface définissant une application.
// Tout objet implémentant cette interface doit définir la méthode ForceLogin(). // Tout objet implémentant cette interface doit définir la méthode ForceLogin().

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<Shell <Shell
x:Class="ShoopNCook.MainAppShell" x:Class="ShopNCook.MainAppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:pages="clr-namespace:ShoopNCook.Pages" xmlns:pages="clr-namespace:ShopNCook.Pages"
Shell.FlyoutBehavior="Disabled" Shell.FlyoutBehavior="Disabled"
Shell.NavBarIsVisible="False" Shell.NavBarIsVisible="False"
Shell.TabBarBackgroundColor="White" Shell.TabBarBackgroundColor="White"

@ -1,8 +1,8 @@
namespace ShoopNCook; namespace ShopNCook;
using Microsoft.Maui.Controls; using Microsoft.Maui.Controls;
using Models; using Models;
using ShoopNCook.Controllers; using ShopNCook.Controllers;
using ShoopNCook.Pages; using ShopNCook.Pages;
using Services; using Services;
// Shell principale de l'application après connexion de l'utilisateur // Shell principale de l'application après connexion de l'utilisateur

@ -1,7 +1,7 @@
using CommunityToolkit.Maui; using CommunityToolkit.Maui;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
namespace ShoopNCook; namespace ShopNCook;
public static class MauiProgram public static class MauiProgram
{ {

@ -2,7 +2,7 @@
using Android.Content.PM; using Android.Content.PM;
using Android.OS; using Android.OS;
namespace ShoopNCook; namespace ShopNCook;
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)] [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
public class MainActivity : MauiAppCompatActivity public class MainActivity : MauiAppCompatActivity

@ -1,7 +1,7 @@
using Android.App; using Android.App;
using Android.Runtime; using Android.Runtime;
namespace ShoopNCook; namespace ShopNCook;
[Application] [Application]
public class MainApplication : MauiApplication public class MainApplication : MauiApplication

@ -1,6 +1,6 @@
using Foundation; using Foundation;
namespace ShoopNCook; namespace ShopNCook;
[Register("AppDelegate")] [Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate public class AppDelegate : MauiUIApplicationDelegate

@ -1,7 +1,7 @@
using ObjCRuntime; using ObjCRuntime;
using UIKit; using UIKit;
namespace ShoopNCook; namespace ShopNCook;
public class Program public class Program
{ {

@ -2,7 +2,7 @@ using System;
using Microsoft.Maui; using Microsoft.Maui;
using Microsoft.Maui.Hosting; using Microsoft.Maui.Hosting;
namespace ShoopNCook; namespace ShopNCook;
class Program : MauiApplication class Program : MauiApplication
{ {

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest package="maui-application-id-placeholder" version="0.0.0" api-version="7" xmlns="http://tizen.org/ns/packages"> <manifest package="maui-application-id-placeholder" version="0.0.0" api-version="7" xmlns="http://tizen.org/ns/packages">
<profile name="common" /> <profile name="common" />
<ui-application appid="maui-application-id-placeholder" exec="ShoopNCook.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single"> <ui-application appid="maui-application-id-placeholder" exec="ShopNCook.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single">
<label>maui-application-title-placeholder</label> <label>maui-application-title-placeholder</label>
<icon>maui-appicon-placeholder</icon> <icon>maui-appicon-placeholder</icon>
<metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" /> <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />

@ -1,8 +1,8 @@
<maui:MauiWinUIApplication <maui:MauiWinUIApplication
x:Class="ShoopNCook.WinUI.App" x:Class="ShopNCook.WinUI.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:maui="using:Microsoft.Maui" xmlns:maui="using:Microsoft.Maui"
xmlns:local="using:ShoopNCook.WinUI"> xmlns:local="using:ShopNCook.WinUI">
</maui:MauiWinUIApplication> </maui:MauiWinUIApplication>

@ -3,7 +3,7 @@
// To learn more about WinUI, the WinUI project structure, // To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info. // and more about our project templates, see: http://aka.ms/winui-project-info.
namespace ShoopNCook.WinUI; namespace ShopNCook.WinUI;
/// <summary> /// <summary>
/// Provides application-specific behavior to supplement the default Application class. /// Provides application-specific behavior to supplement the default Application class.

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1"> <assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="ShoopNCook.WinUI.app"/> <assemblyIdentity version="1.0.0.0" name="ShopNCook.WinUI.app"/>
<application xmlns="urn:schemas-microsoft-com:asm.v3"> <application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings> <windowsSettings>

@ -1,6 +1,6 @@
using Foundation; using Foundation;
namespace ShoopNCook; namespace ShopNCook;
[Register("AppDelegate")] [Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate public class AppDelegate : MauiUIApplicationDelegate

@ -1,7 +1,7 @@
using ObjCRuntime; using ObjCRuntime;
using UIKit; using UIKit;
namespace ShoopNCook; namespace ShopNCook;
public class Program public class Program
{ {

@ -47,7 +47,6 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<AndroidResource Remove="ShopNCookTests\**" />
<AndroidResource Remove="Tests\**" /> <AndroidResource Remove="Tests\**" />
<Compile Remove="Foo\**" /> <Compile Remove="Foo\**" />
<Compile Remove="Services\**" /> <Compile Remove="Services\**" />
@ -59,7 +58,6 @@
<EmbeddedResource Remove="Services\**" /> <EmbeddedResource Remove="Services\**" />
<EmbeddedResource Remove="LocalServices\**" /> <EmbeddedResource Remove="LocalServices\**" />
<EmbeddedResource Remove="Models\**" /> <EmbeddedResource Remove="Models\**" />
<EmbeddedResource Remove="ShopNCookTests\**" />
<EmbeddedResource Remove="Tests\**" /> <EmbeddedResource Remove="Tests\**" />
<MauiCss Remove="Foo\**" /> <MauiCss Remove="Foo\**" />
<MauiCss Remove="Services\**" /> <MauiCss Remove="Services\**" />

@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
VisualStudioVersion = 17.0.31611.283 VisualStudioVersion = 17.0.31611.283
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoopNCook", "ShoopNCook.csproj", "{8ED2FB1D-C04D-478D-9271-CC91FE110396}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShopNCook", "ShopNCook.csproj", "{8ED2FB1D-C04D-478D-9271-CC91FE110396}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests", "Tests\Tests.csproj", "{E50D92DC-0BB1-4998-B085-EF47C55675AC}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests", "Tests\Tests.csproj", "{E50D92DC-0BB1-4998-B085-EF47C55675AC}"
EndProject EndProject

@ -2,7 +2,7 @@
using CommunityToolkit.Maui.Core; using CommunityToolkit.Maui.Core;
namespace ShoopNCook namespace ShopNCook
{ {
internal class UserNotifier internal class UserNotifier
{ {

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.CounterView" x:Class="ShopNCook.Views.CounterView"
x:Name="Counter"> x:Name="Counter">
<ContentView.BindingContext> <ContentView.BindingContext>
<x:Reference Name="Counter"/> <x:Reference Name="Counter"/>

@ -1,4 +1,4 @@
namespace ShoopNCook.Views; namespace ShopNCook.Views;
public partial class CounterView : ContentView public partial class CounterView : ContentView
{ {

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.HeadedButton" x:Class="ShopNCook.Views.HeadedButton"
x:Name="HeadedBtn"> x:Name="HeadedBtn">
<HorizontalStackLayout> <HorizontalStackLayout>
<Border <Border

@ -1,4 +1,4 @@
namespace ShoopNCook.Views; namespace ShopNCook.Views;
using Microsoft.Maui.Graphics; using Microsoft.Maui.Graphics;
// Classe représentant un bouton avec une tête (une image en préfixe) // Classe représentant un bouton avec une tête (une image en préfixe)

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.IngredientEntry"> x:Class="ShopNCook.Views.IngredientEntry">
<Border <Border
Stroke="{StaticResource BackgroundSecondary}" Stroke="{StaticResource BackgroundSecondary}"
StrokeThickness="1" StrokeThickness="1"

@ -1,6 +1,6 @@
using Models; using Models;
namespace ShoopNCook.Views; namespace ShopNCook.Views;
// Classe représentant une entrée d'ingrédient // Classe représentant une entrée d'ingrédient
public partial class IngredientEntry : ContentView public partial class IngredientEntry : ContentView

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.IngredientView" x:Class="ShopNCook.Views.IngredientView"
x:Name="Ingredient"> x:Name="Ingredient">
<ContentView.BindingContext> <ContentView.BindingContext>

@ -1,6 +1,6 @@
using Models; using Models;
namespace ShoopNCook.Views; namespace ShopNCook.Views;
// Classe représentant une vue d'ingrédient // Classe représentant une vue d'ingrédient
public partial class IngredientView : ContentView public partial class IngredientView : ContentView

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.OwnedRecipeView" x:Class="ShopNCook.Views.OwnedRecipeView"
Margin="6,2"> Margin="6,2">
<Border <Border
Style="{StaticResource SecondaryBorderShadow}" Style="{StaticResource SecondaryBorderShadow}"

@ -1,6 +1,6 @@
using Models; using Models;
namespace ShoopNCook.Views; namespace ShopNCook.Views;
public partial class OwnedRecipeView : ContentView public partial class OwnedRecipeView : ContentView
{ {

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.RecipeView" x:Class="ShopNCook.Views.RecipeView"
Margin="4,2"> Margin="4,2">
<Border <Border

@ -1,6 +1,6 @@
using Models; using Models;
namespace ShoopNCook.Views namespace ShopNCook.Views
{ {
public partial class RecipeView : ContentView public partial class RecipeView : ContentView
{ {

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.StepEntry"> x:Class="ShopNCook.Views.StepEntry">
<VerticalStackLayout> <VerticalStackLayout>
<HorizontalStackLayout> <HorizontalStackLayout>
<Label <Label

@ -1,6 +1,6 @@
using Models; using Models;
namespace ShoopNCook.Views; namespace ShopNCook.Views;
public partial class StepEntry : ContentView public partial class StepEntry : ContentView
{ {

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.StoredRecipeView" x:Class="ShopNCook.Views.StoredRecipeView"
xmlns:views="clr-namespace:ShoopNCook.Views"> xmlns:views="clr-namespace:ShopNCook.Views">
<Border <Border
Style="{StaticResource SecondaryBorderShadow}" Style="{StaticResource SecondaryBorderShadow}"

@ -1,6 +1,6 @@
using Models; using Models;
namespace ShoopNCook.Views; namespace ShopNCook.Views;
public partial class StoredRecipeView : ContentView public partial class StoredRecipeView : ContentView
{ {

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.CreateRecipePage" x:Class="ShopNCook.Pages.CreateRecipePage"
Title="CreateRecipePage" Title="CreateRecipePage"
xmlns:views="clr-namespace:ShoopNCook.Views" xmlns:views="clr-namespace:ShopNCook.Views"
BackgroundColor="{StaticResource BackgroundPrimary}"> BackgroundColor="{StaticResource BackgroundPrimary}">
<Grid <Grid
RowDefinitions="Auto, *, Auto" RowDefinitions="Auto, *, Auto"

@ -1,7 +1,7 @@
using Models; using Models;
using ShoopNCook.Views; using ShopNCook.Views;
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
public partial class CreateRecipePage : ContentPage public partial class CreateRecipePage : ContentPage
{ {

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.FavoritesPage" x:Class="ShopNCook.Pages.FavoritesPage"
Title="FavoritesPage" Title="FavoritesPage"
xmlns:views="clr-namespace:ShoopNCook.Views" xmlns:views="clr-namespace:ShopNCook.Views"
BackgroundColor="{StaticResource BackgroundPrimary}" BackgroundColor="{StaticResource BackgroundPrimary}"
NavigatedTo="ContentPage_NavigatedTo"> NavigatedTo="ContentPage_NavigatedTo">

@ -1,9 +1,9 @@
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
using Services; using Services;
using Models; using Models;
using ShoopNCook.Views; using ShopNCook.Views;
public partial class FavoritesPage : ContentPage public partial class FavoritesPage : ContentPage
{ {

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.HomePage" x:Class="ShopNCook.Pages.HomePage"
xmlns:views="clr-namespace:ShoopNCook.Views" xmlns:views="clr-namespace:ShopNCook.Views"
Title="HomePage" Title="HomePage"
BackgroundColor="{StaticResource BackgroundPrimary}"> BackgroundColor="{StaticResource BackgroundPrimary}">

@ -1,7 +1,7 @@
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
using Models; using Models;
using ShoopNCook.Views; using ShopNCook.Views;
using Services; using Services;
public partial class HomePage : ContentPage public partial class HomePage : ContentPage

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.LoginPage" x:Class="ShopNCook.Pages.LoginPage"
Title="Login" Title="Login"
BackgroundColor="{StaticResource BackgroundPrimary}"> BackgroundColor="{StaticResource BackgroundPrimary}">
<VerticalStackLayout <VerticalStackLayout

@ -1,7 +1,7 @@
using Services; using Services;
using ShoopNCook.Controllers; using ShopNCook.Controllers;
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
public partial class LoginPage : ContentPage public partial class LoginPage : ContentPage
{ {

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.MorePage" x:Class="ShopNCook.Pages.MorePage"
BackgroundColor="{StaticResource BackgroundPrimary}" BackgroundColor="{StaticResource BackgroundPrimary}"
xmlns:views="clr-namespace:ShoopNCook.Views" xmlns:views="clr-namespace:ShopNCook.Views"
Title="MorePage"> Title="MorePage">
<Grid <Grid

@ -1,7 +1,7 @@
using Models; using Models;
using ShoopNCook.Controllers; using ShopNCook.Controllers;
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
public partial class MorePage : ContentPage public partial class MorePage : ContentPage
{ {

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.MyListPage" x:Class="ShopNCook.Pages.MyListPage"
Title="MyList" Title="MyList"
BackgroundColor="{StaticResource BackgroundPrimary}" BackgroundColor="{StaticResource BackgroundPrimary}"
xmlns:views="clr-namespace:ShoopNCook.Views" xmlns:views="clr-namespace:ShopNCook.Views"
NavigatedTo="ContentPage_NavigatedTo"> NavigatedTo="ContentPage_NavigatedTo">
<Grid <Grid
RowDefinitions="Auto, *, Auto"> RowDefinitions="Auto, *, Auto">

@ -1,9 +1,9 @@
using Services; using Services;
using Services; using Services;
using Models; using Models;
using ShoopNCook.Views; using ShopNCook.Views;
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
public partial class MyListPage : ContentPage public partial class MyListPage : ContentPage
{ {

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.MyRecipesPage" x:Class="ShopNCook.Pages.MyRecipesPage"
Title="MyRecipesPage" Title="MyRecipesPage"
xmlns:views="clr-namespace:ShoopNCook.Views" xmlns:views="clr-namespace:ShopNCook.Views"
BackgroundColor="{StaticResource BackgroundPrimary}"> BackgroundColor="{StaticResource BackgroundPrimary}">
<Grid <Grid
RowDefinitions="Auto, *, Auto"> RowDefinitions="Auto, *, Auto">

@ -1,8 +1,8 @@
using Services; using Services;
using Models; using Models;
using ShoopNCook.Views; using ShopNCook.Views;
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
public partial class MyRecipesPage : ContentPage public partial class MyRecipesPage : ContentPage
{ {

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.ProfilePage" x:Class="ShopNCook.Pages.ProfilePage"
Title="Profile" Title="Profile"
BackgroundColor="{StaticResource BackgroundPrimary}"> BackgroundColor="{StaticResource BackgroundPrimary}">

@ -1,6 +1,6 @@
using Models; using Models;
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
public partial class ProfilePage : ContentPage public partial class ProfilePage : ContentPage
{ {

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.RecipePage" x:Class="ShopNCook.Pages.RecipePage"
Title="RecipePage" Title="RecipePage"
x:Name="RecipeViewPage" x:Name="RecipeViewPage"
xmlns:views="clr-namespace:ShoopNCook.Views" xmlns:views="clr-namespace:ShopNCook.Views"
BackgroundColor="{StaticResource BackgroundPrimary}"> BackgroundColor="{StaticResource BackgroundPrimary}">
<Grid <Grid

@ -1,9 +1,9 @@
using ShoopNCook.Views; using ShopNCook.Views;
using System.Windows.Input; using System.Windows.Input;
using Models; using Models;
using Services; using Services;
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
public partial class RecipePage : ContentPage public partial class RecipePage : ContentPage
{ {

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.RegisterPage" x:Class="ShopNCook.Pages.RegisterPage"
Title="Register" Title="Register"
BackgroundColor="{StaticResource BackgroundPrimary}"> BackgroundColor="{StaticResource BackgroundPrimary}">
<ScrollView> <ScrollView>

@ -1,6 +1,6 @@
using ShoopNCook.Controllers; using ShopNCook.Controllers;
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
public partial class RegisterPage : ContentPage public partial class RegisterPage : ContentPage
{ {

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.SearchPage" x:Class="ShopNCook.Pages.SearchPage"
xmlns:views="clr-namespace:ShoopNCook.Views" xmlns:views="clr-namespace:ShopNCook.Views"
Title="SearchPage" Title="SearchPage"
BackgroundColor="{StaticResource BackgroundPrimary}"> BackgroundColor="{StaticResource BackgroundPrimary}">
<Grid <Grid

@ -1,9 +1,9 @@
using Models; using Models;
using Services; using Services;
using ShoopNCook.Views; using ShopNCook.Views;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
public partial class SearchPage : ContentPage public partial class SearchPage : ContentPage
{ {
private readonly IRecipesService recipesService; private readonly IRecipesService recipesService;

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.Splash" x:Class="ShopNCook.Pages.Splash"
Title="Splash" Title="Splash"
BackgroundColor="{StaticResource BackgroundPrimary}"> BackgroundColor="{StaticResource BackgroundPrimary}">
<Grid <Grid

@ -1,4 +1,4 @@
namespace ShoopNCook.Pages; namespace ShopNCook.Pages;
public partial class Splash : ContentPage public partial class Splash : ContentPage
{ {

@ -917,7 +917,7 @@
/></g /></g
><g font-size="11px" transform="translate(388,1369)" fill-opacity="1" fill="black" text-rendering="geometricPrecision" image-rendering="optimizeQuality" font-family="sans-serif" stroke="black" stroke-opacity="1" ><g font-size="11px" transform="translate(388,1369)" fill-opacity="1" fill="black" text-rendering="geometricPrecision" image-rendering="optimizeQuality" font-family="sans-serif" stroke="black" stroke-opacity="1"
><text x="282" xml:space="preserve" y="12" clip-path="url(#clipPath5)" stroke="none" ><text x="282" xml:space="preserve" y="12" clip-path="url(#clipPath5)" stroke="none"
>ShoopNCook</text >ShopNCook</text
></g ></g
><g font-size="11px" transform="translate(1163,1289)" fill-opacity="1" fill="rgb(255,255,128)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" font-family="sans-serif" stroke="rgb(255,255,128)" stroke-opacity="1" ><g font-size="11px" transform="translate(1163,1289)" fill-opacity="1" fill="rgb(255,255,128)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" font-family="sans-serif" stroke="rgb(255,255,128)" stroke-opacity="1"
><rect x="0" width="260" height="20" y="0" clip-path="url(#clipPath6)" stroke="none" ><rect x="0" width="260" height="20" y="0" clip-path="url(#clipPath6)" stroke="none"

Before

Width:  |  Height:  |  Size: 254 KiB

After

Width:  |  Height:  |  Size: 254 KiB

Loading…
Cancel
Save