Skip to content

This is the version of the cordova screen orientation plugin used in Rider App

License

Notifications You must be signed in to change notification settings

terreng/cordova-plugin-screen-orientation

 
 

Repository files navigation

This version of the cordova-plugin-screen-orientation plugin adds a native listener to get the device's current orientation, even when it's locked via orientation.lock(). It works on both Android and iOS.

Define window.onRotationUpdate, take in both rotation integer (0, 90, -90, 180), and device auto rotate locked boolean (true, false), as shown in the example below:

window.onRotationUpdate = function(rotation, locked) {

}

Congratulations! You can now detect when the device itself has changed orientation, even when your cordova activity is locked in portrait/landscape mode.

This plugin also disables the portrait upsidedown orientation on iOS when it is unlocked using orientation.unlock(), because why would you want that?

Important: This version of the plugin removes rotation locking and unlocking on iOS 16 and above. This is because I'm using a custom solution for these newer versions. You should use this version of the plugin, not the master branch.

Cordova Screen Orientation Plugin

Android Testsuite Chrome Testsuite iOS Testsuite Lint Test

Cordova plugin to set/lock the screen orientation in a common way for iOS, Android, and windows-uwp. This plugin is based on Screen Orientation API so the api matches the current spec.

The plugin adds the following to the screen object (window.screen):

// lock the device orientation
.orientation.lock('portrait')

// unlock the orientation
.orientation.unlock()

// current orientation
.orientation

Install

cordova plugin add cordova-plugin-screen-orientation

Supported Orientations

portrait-primary

The orientation is in the primary portrait mode.

portrait-secondary

The orientation is in the secondary portrait mode.

landscape-primary

The orientation is in the primary landscape mode.

landscape-secondary

The orientation is in the secondary landscape mode.

portrait

The orientation is either portrait-primary or portrait-secondary (sensor).

landscape

The orientation is either landscape-primary or landscape-secondary (sensor).

any

orientation is unlocked - all orientations are supported.

Usage

// set to either landscape
screen.orientation.lock('landscape');

// allow user rotate
screen.orientation.unlock();

// access current orientation
console.log('Orientation is ' + screen.orientation.type);

Events

Both android and iOS will fire the orientationchange event on the window object. For this version of the plugin use the window object if you require notification.

Example usage

window.addEventListener("orientationchange", function(){
    console.log(screen.orientation.type); // e.g. portrait
});

The 'change' event listener has also been added to the screen.orientation object.

Example usage

screen.orientation.addEventListener('change', function(){
    console.log(screen.orientation.type); // e.g. portrait
});
    // OR

screen.orientation.onchange = function(){console.log(screen.orientation.type);
};

Android Notes

The screen.orientation property will not update when the phone is rotated 180 degrees.

Windows UWP Notes

Windows store apps (windows-uwp) will only display orientation changes if the device has some sort of accelerometer. The internal state of the "orientation" will still be kept, but the actual screen won't rotate unless the device supports it.

About

This is the version of the cordova screen orientation plugin used in Rider App

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 42.4%
  • JavaScript 32.6%
  • Objective-C 25.0%