13 lines
228 B
C#
13 lines
228 B
C#
|
|
using Microsoft.Maui.Controls;
|
||
|
|
|
||
|
|
namespace ShellDemo;
|
||
|
|
|
||
|
|
public partial class AppShell : Shell
|
||
|
|
{
|
||
|
|
public AppShell()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
Routing.RegisterRoute("detail", typeof(Pages.DetailPage));
|
||
|
|
}
|
||
|
|
}
|