Android应用在手机上启动成功,网络日志抓取成功
大石头 编写于 2022-03-13 02:19:43
X
using System;
using System.Collections.Generic;
using App1.ViewModels;
using App1.Views;
using Xamarin.Forms;

namespace App1
{
    public partial class AppShell : Xamarin.Forms.Shell
    {
        public AppShell()
        {
            InitializeComponent();
            Routing.RegisterRoute(nameof(ItemDetailPage), typeof(ItemDetailPage));
            Routing.RegisterRoute(nameof(NewItemPage), typeof(NewItemPage));
        }

    }
}