using ShareeBike.ViewModel.RootShell; using Xamarin.Forms; namespace ShareeBike.View.RootShell { public partial class AppShell : Shell { public AppShell() { InitializeComponent(); BindingContext = new AppShellViewModel(); } } }