All Projects → nirsky → React Native Size Matters

nirsky / React Native Size Matters

Licence: mit
A lightweight, zero-dependencies, React-Native utility belt for scaling the size of your apps UI across different sized devices.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Native Size Matters

Input Wacom
Linux kernel driver for Wacom devices
Stars: ✭ 327 (-80.83%)
Mutual labels:  tablet
Postgresql book
Book about PostgreSQL (russian)
Stars: ✭ 780 (-54.28%)
Mutual labels:  scaling
Booking Management Dashboard
flutter Booking Management Dashboard responsive (web,mobile,tablet)
Stars: ✭ 69 (-95.96%)
Mutual labels:  tablet
Termux Archlinux
You can use setupTermuxArch.bash 📲 to install Arch Linux in Termux on Amazon, Android, Chromebook and Windows. https://sdrausty.github.io/termux-archlinux/
Stars: ✭ 384 (-77.49%)
Mutual labels:  tablet
Ecs Deploy
Powerful CLI tool to simplify Amazon ECS deployments, rollbacks & scaling
Stars: ✭ 541 (-68.29%)
Mutual labels:  scaling
Tabletdriver
TabletDriver Download: http://hwk.fi/TabletDriver/TabletDriverV0.2.3.zip
Stars: ✭ 936 (-45.13%)
Mutual labels:  tablet
mcloud
Mobile farm ecosystem for Android and iOS devices
Stars: ✭ 32 (-98.12%)
Mutual labels:  tablet
Engineering Blog
📝 We write about our technologies and the problems we handle at scale.
Stars: ✭ 99 (-94.2%)
Mutual labels:  scaling
Termuxarch
You can use setupTermuxArch.bash 📲 to install Arch Linux in Amazon, Android, Chromebook and Windows. https://sdrausty.github.io/TermuxArch/docs/install
Stars: ✭ 653 (-61.72%)
Mutual labels:  tablet
Imbmw
BMW iBus .NET MF SDK and hardware
Stars: ✭ 50 (-97.07%)
Mutual labels:  tablet
Kube Downscaler
Scale down Kubernetes deployments after work hours
Stars: ✭ 482 (-71.75%)
Mutual labels:  scaling
Escalator
Escalator is a batch or job optimized horizontal autoscaler for Kubernetes
Stars: ✭ 539 (-68.41%)
Mutual labels:  scaling
Egjs Flicking
🎠 ♻️ Everyday 30 million people experience. It's reliable, flexible and extendable carousel.
Stars: ✭ 937 (-45.08%)
Mutual labels:  tablet
Espui
A simple web user interface library for ESP32 and ESP8266
Stars: ✭ 330 (-80.66%)
Mutual labels:  tablet
Lines Are Beautiful
C++ File API for the reMarkable tablet
Stars: ✭ 73 (-95.72%)
Mutual labels:  tablet
Ngx Responsive
Superset of RESPONSIVE DIRECTIVES to show or hide items according to the size of the device screen and another features in Angular 9
Stars: ✭ 300 (-82.42%)
Mutual labels:  tablet
Aeternity
æternity: solving scalability problems by making sense of state-channels
Stars: ✭ 923 (-45.9%)
Mutual labels:  scaling
Material Bottomnavigation
Bottom Navigation widget component inspired by the Google Material Design Guidelines at https://www.google.com/design/spec/components/bottom-navigation.html
Stars: ✭ 1,375 (-19.4%)
Mutual labels:  tablet
Cetus
Cetus is a high performance middleware that provides transparent routing between your application and any backend MySQL Servers.
Stars: ✭ 1,199 (-29.72%)
Mutual labels:  scaling
Redux Definitions
🥒 Define and share reusable slices of Redux.
Stars: ✭ 27 (-98.42%)
Mutual labels:  scaling

📐 react-native-size-matters

NPM version Actions Status: test TypeScript npm npm bundle size

A lightweight, zero-dependencies, React-Native utility belt for scaling the size of your apps UI across different sized devices.

Installation

npm install --save react-native-size-matters
//or:
yarn add react-native-size-matters

Motivation

When developing with react-native, you need to manually adjust your app to look great on a variety of different screen sizes. That's a tedious job.
react-native-size-matters provides some simple tooling to make your scaling a whole lot easier.
The idea is to develop once on a standard ~5" screen mobile device and then simply apply the provided utils.
📖  You can read more about what led to this library on my blog post, which can be found in this repo or at Medium.

API

Scaling Functions

import { scale, verticalScale, moderateScale } from 'react-native-size-matters';

const Component = props =>
    <View style={{
        width: scale(30),
        height: verticalScale(50),
        padding: moderateScale(5)
    }}/>;
  • scale(size: number)
    Will return a linear scaled result of the provided size, based on your device's screen width.

  • verticalScale(size: number)
    Will return a linear scaled result of the provided size, based on your device's screen height.

  • moderateScale(size: number, factor?: number)
    Sometimes you don't want to scale everything in a linear manner, that's where moderateScale comes in.
    The cool thing about it is that you can control the resize factor (default is 0.5).
    If normal scale will increase your size by +2X, moderateScale will only increase it by +X, for example:
    ➡️   scale(10) = 20
    ➡️   moderateScale(10) = 15
    ➡️   moderateScale(10, 0.1) = 11

  • moderateVerticalScale(size: number, factor?: number)
    Same as moderateScale, but using verticalScale instead of scale.

All scale functions can be imported using their shorthand alias as well:

import { s, vs, ms, mvs } from 'react-native-size-matters';

ScaledSheet

import { ScaledSheet } from 'react-native-size-matters';

const styles = ScaledSheet.create(stylesObject)

ScaledSheet will take the same stylesObject a regular StyleSheet will take, plus a special (optional) annotation that will automatically apply the scale functions for you:

  • <size>@s - will apply scale function on size.
  • <size>@vs - will apply verticalScale function on size.
  • <size>@ms - will apply moderateScale function with resize factor of 0.5 on size.
  • <size>@mvs - will apply moderateVerticalScale function with resize factor of 0.5 on size.
  • <size>@ms<factor> - will apply moderateScale function with resize factor of factor on size.
  • <size>@mvs<factor> - will apply moderateVerticalScale function with resize factor of factor on size.

ScaledSheet also supports rounding the result, simply add r at the end of the annotation.

Example:

import { ScaledSheet } from 'react-native-size-matters';

const styles = ScaledSheet.create({
    container: {
        width: '100@s', // = scale(100)
        height: '200@vs', // = verticalScale(200)
        padding: '2@msr', // = Math.round(moderateScale(2))
        margin: 5
    },
    row: {
        padding: '[email protected]', // = moderateScale(10, 0.3)
        width: '50@ms', // = moderateScale(50)
        height: '[email protected]' // = moderateVerticalScale(30, 0.3)
    }
});

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].