react-hook-screen-orientation

React hook for accessing screen orientation

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
react-hook-screen-orientation
1671.0.4a year ago4 years agoMinified + gzip package size for react-hook-screen-orientation in KB

Readme

react-hook-screen-orientation :arrowsclockwise:
A React hook for detecting screen orientation.

Installation

Using npm:
npm install --save react-hook-screen-orientation

Using yarn:
yarn add react-hook-screen-orientation

Usage

import React from 'react'
import useScreenOrientation from 'react-hook-screen-orientation'

const ComponentWithScreenOrientation = () => {
  const screenOrientation = useScreenOrientation()

  return (
    <p>Screen orientation is: {screenOrientation}</p>
  )
}

Notes

The screenOrientation value provided by the hook is the type propery of a ScreenOrientation interface is always one of the following strings:
  • portrait-primary
  • portrait-secondary (meaning upside down)
  • landscape-primary
  • landscape-secondary (meaning upside down)

Contributions

Contributions are welcome. File bug reports, create pull requests, feel free to reach out at tothab@gmail.com.

Licence

LGPL-3.0