You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
561 B

namespace PocketBook;
public partial class AppShell : Shell
{
public AppShell()
{
Routing.RegisterRoute("TousPage",typeof(TousPage));
Routing.RegisterRoute("StatutPage", typeof(StatutPage));
Routing.RegisterRoute("SharePage", typeof(SharePage));
Routing.RegisterRoute("LaterPage", typeof(LaterPage));
Routing.RegisterRoute("LikePage", typeof(LikePage));
Routing.RegisterRoute("Filter", typeof(Filter));
Routing.RegisterRoute("BookDetail", typeof(BookDetail));
InitializeComponent();
}
}