@nativescript-use/nativescript-orientation
添加插件描述
npm i --save @nativescript-use/nativescript-orientation

@nativescript-use/nativescript-orientation

npm install @nativescript-use/nativescript-orientation

使用情况

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();

类型声明

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
}

许可证

Apache 许可证版本 2.0