Plugin.Toasts.MessageView.IsDeviceLandscape C# (CSharp) Method

IsDeviceLandscape() private method

private IsDeviceLandscape ( UIDeviceOrientation orientation ) : bool
orientation UIDeviceOrientation
return bool
        private bool IsDeviceLandscape(UIDeviceOrientation orientation)
        {
            return orientation == UIDeviceOrientation.LandscapeLeft || orientation == UIDeviceOrientation.LandscapeRight;
        }