Skip to content

Luffos/rxn-units

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 


GitHub β€Ž β€Ž GitHub issues β€Ž β€Ž GitHub code size in bytes β€Ž β€Ž GitHub last commit (branch) β€Ž β€Ž GitHub package.json version β€Ž β€Ž npm


Support:

Android IOS Web
(react-native-web)
Expo
βœ… βœ… βœ… βœ…

Inspired by: react-native-viewport-units and react-native-expo-viewport-units

Install

Using NPM

npm install rxn-units

Using Yarn

yarn add rxn-units


🌐 Using this module for Web?
Don't forget to setup react-native-web

Examples

Units (vw, vh, vmin, vmax and percentage)

What is vw? (viewport width)
The vw measurement is equal to 1/100 of the viewport width.
Example: If the browser width is 900px, vw(1) equals 9px.

What is vh? (viewport height)
The vh measurement is equal to 1/100 of the viewport height.
Example: If the browser height is 500px, vh(1) equals 5px.

What is vmin and vmax?

  • vmax(n) means "Which is the larger between vw(n) and vh(n)?" = vw(n) or vh(n)
  • vmin(n) means "Which is the lower between vw(n) and vh(n)?" = vw(n) or vh(n)

Percentage
percentage(x, y) = X% of Y

Usage

🌊 Using via hook (dynamically changes)

import React from 'react';
import useUnits from 'rxn-units';
    
const Foo = () => {
  const {vmin, vmax, vw, vh, percentage} = useUnits();

  . . .
}

πŸ“Œ Using static methods (need manual recall every time)

import React from 'react';
import {vmin, vmax, vw, vh, percentage} from 'rxn-units';
    
const Foo = () => {
  console.log("current vmin", vmin());
  console.log("current vmax", vmax());
}

Contributors

πŸ“„ License

MIT - This module was built with ❀️ by Luffos
Feel free for modify, edit, copy, fork and share