2025-01-28 13:50:12 +01:00
|
|
|
|
using MauiApp1.Views;
|
|
|
|
|
|
|
|
|
|
namespace MauiApp1;
|
2025-01-16 17:48:14 +01:00
|
|
|
|
|
|
|
|
|
public partial class AppShell : Shell
|
|
|
|
|
{
|
|
|
|
|
public AppShell()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2025-01-28 13:50:12 +01:00
|
|
|
|
|
|
|
|
|
// Enregistrement des routes
|
|
|
|
|
Routing.RegisterRoute("fournisseurpage", typeof(FournisseurPage));
|
2025-01-16 17:48:14 +01:00
|
|
|
|
}
|
|
|
|
|
}
|