npm i --save @nativescript-use/nativescript-orientation
- Version: 0.0.3
- GitHub: https://github.com/NativeScript-Use/NativeScript-Use
- NPM: https://www.npmjs.com/package/%40nativescript-use%2Fnativescript-orientation
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
@nativescript-use/nativescript-orientation
npm install @nativescript-use/nativescript-orientation
Usage
import { Orientation } from "@nativescript-use/nativescript-orientation"
const orientation = new Orientation();
// Get current orientation
const currentOrientation = orientation.getOrientation();
// Change orientation. values: 'landscape' | 'landscaperight' | 'landscapeleft' | 'portrait'
orientation.setOrientation('landscape');
// Enable rotation
orientation.enableRotation();
// Disable rotation
orientation.disableRotation();
// Add listener
orientation.onChangedOrientation((newValue: CoreTypes.DeviceOrientationType) =>{
console.log(newValue)
});
// Remove listener
orientation.offChangedOrientation();
Type declaration
export declare class Orientation {
getOrientation(): CoreTypes.DeviceOrientationType
onChangedOrientation(callback: (newValue: CoreTypes.DeviceOrientationType) => void): void
offChangedOrientation(): void
enableRotation(): void
disableRotation(): void
setOrientation(value: 'landscape' | 'landscaperight' | 'landscapeleft' | 'portrait', animation: false): void
}
License
Apache License Version 2.0