mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-29 22:22:51 +08:00
20 lines
473 B
C#
20 lines
473 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Xamarin.Forms;
|
|
using xamarinFormApp.ViewModels;
|
|
using xamarinFormApp.Views;
|
|
|
|
namespace xamarinFormApp
|
|
{
|
|
public partial class AppShell : Xamarin.Forms.Shell
|
|
{
|
|
public AppShell()
|
|
{
|
|
InitializeComponent();
|
|
Routing.RegisterRoute(nameof(ItemDetailPage), typeof(ItemDetailPage));
|
|
Routing.RegisterRoute(nameof(NewItemPage), typeof(NewItemPage));
|
|
}
|
|
|
|
}
|
|
}
|