15 lines
354 B
C#
15 lines
354 B
C#
using BookReader.Views;
|
|
|
|
namespace BookReader;
|
|
|
|
public partial class AppShell : Shell
|
|
{
|
|
public AppShell()
|
|
{
|
|
InitializeComponent();
|
|
|
|
Routing.RegisterRoute("reader", typeof(ReaderPage));
|
|
Routing.RegisterRoute("settings", typeof(SettingsPage));
|
|
Routing.RegisterRoute("calibre", typeof(CalibreLibraryPage));
|
|
}
|
|
} |