zhaw-dnet2/Tasks/Lab12/TodoDetails/AppShell.xaml.cs

14 lines
274 B
C#
Raw Normal View History

2024-06-06 21:55:29 +00:00
using TodoDetails.View;
namespace TodoDetails
2024-06-06 20:52:07 +00:00
{
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
2024-06-06 21:55:29 +00:00
Routing.RegisterRoute(nameof(TodoDetailsPage), typeof(TodoDetailsPage));
2024-06-06 20:52:07 +00:00
}
}
}