1.1.0 • Published 4 years ago

use-device-react v1.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

use-device-react

use-device-react is a custom hook that can be used to recognize the device viewport (mobile, desktop or tablet) based on device inner width and custom breakpoint input. The content also updates on screen resize.

NPM JavaScript Style Guide

Install

wiht npm

npm install use-device-react

or yarn

yarn add use-device-react

Usage

Example of usage

import { useDevice } from "use-device-react";

const Component = () => {
  const { isMobile, isDesktop, isTablet } = useDevice();

  return (<div>
    {isMobile && ...}
    {isTablet && ...}
    {isDesktop && ...}
  </div>);
};

Breakpoint

You can pass a object of breakpoints to the hook as an input. Follow the example bellow:

import { useDevice } from "use-device-react";

const Component = () => {
  const breakpoints = {
    tablet: 650,
    desktop: 1150,
  };

  const { isMobile, isDesktop, isTablet } = useDevice(breakpoints);

  return <div>...</div>;
};

In the example above, useDevice will return isMobile as true if the device viewport is less than 650. If the device viewport is more or equal to 650 and less than 1150 it will return isTablet as true. If the device viewport is more or equal to 1150 it will return isDesktop as true.

The default values are:

  {
    tablet: 700,
    desktop: 1200
  }

License

MIT © theomoura

1.1.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago