Does anyone know how one can have the name of the wi-fi network in which the device is currently connected?
using Essentials
var orientation = DeviceDisplay.MainDisplayInfo.Orientation;
if (orientation == Orientation.Landscape)
{
MainPage = new Page1();
} else {
MainPage = new Page2();
}