using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using ShareeSharedGuiLib.ViewModel; using Xamarin.Essentials; using Xamarin.Forms; using Xamarin.Forms.Xaml; namespace ShareeSharedGuiLib.View { [XamlCompilation(XamlCompilationOptions.Compile)] public partial class NotConnectedToNetView : ContentView, INotifyPropertyChanged { public NotConnectedToNetView() { InitializeComponent(); this.BindingContext = new NotConnectedToNetViewModel(); } } }