All Projects → marudy → React Native Responsive Screen

marudy / React Native Responsive Screen

Licence: mit
Make React Native views responsive for all devices with the use of 2 simple methods

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Native Responsive Screen

Bootstrap4Resume
A single-page static resume website created with Bootstrap 4
Stars: ✭ 36 (-96.79%)
Mutual labels:  responsive-layout
flexbin
Pure CSS, flexible and gapless image gallery layout like Google Images and 500px.com
Stars: ✭ 93 (-91.7%)
Mutual labels:  responsive-layout
Responsiveframework
Easily make Flutter apps responsive. Automatically adapt UI to different screen sizes. Responsiveness made simple. Demo: https://gallery.codelessly.com/flutterwebsites/minimal/
Stars: ✭ 476 (-57.5%)
Mutual labels:  responsive-layout
bootstrap-grid-ms
Missing grid range in Bootstrap 3, micro-small from 480-767px.
Stars: ✭ 34 (-96.96%)
Mutual labels:  responsive-layout
svelteit
Svelteit is a minimalistic UI/UX component library for Svelte and Sapper projects
Stars: ✭ 64 (-94.29%)
Mutual labels:  responsive-layout
Layout
Flutter | Create responsive layouts for mobile, web and desktop
Stars: ✭ 312 (-72.14%)
Mutual labels:  responsive-layout
Skeleton Less
The (un)official Less Version of Skeleton (2.0.4): A Dead Simple, Responsive Boilerplate for Mobile-Friendly Development
Stars: ✭ 150 (-86.61%)
Mutual labels:  responsive-layout
Website Templates
150+ Website Templates
Stars: ✭ 802 (-28.39%)
Mutual labels:  responsive-layout
quasar-warren
💰📈 A dashboard based on the Warren platform made with Quasar Framework
Stars: ✭ 30 (-97.32%)
Mutual labels:  responsive-layout
Commentreplycomponent
基于ExpandableListView实现评论和回复的功能。
Stars: ✭ 369 (-67.05%)
Mutual labels:  responsive-layout
react-context-responsive
A package that provides a responsive context to your application, using React Context API.
Stars: ✭ 25 (-97.77%)
Mutual labels:  responsive-layout
blog-desktop-v2
Yancey Blog website for desktop and mobile.
Stars: ✭ 19 (-98.3%)
Mutual labels:  responsive-layout
Responsive Bootstrap Toolkit
Responsive Bootstrap Toolkit allows for easy breakpoint detection in JavaScript
Stars: ✭ 364 (-67.5%)
Mutual labels:  responsive-layout
react-timeline
The easiest way to add a responsive and customizable timeline to React apps
Stars: ✭ 68 (-93.93%)
Mutual labels:  responsive-layout
Kick Off
UIkit 3 Starter Layout / Templates - Quick start for your UIkit 3 project!
Stars: ✭ 672 (-40%)
Mutual labels:  responsive-layout
Kindling
A pocket-sized grid system built on the flex display property.
Stars: ✭ 155 (-86.16%)
Mutual labels:  responsive-layout
Layout Demo
Various Layouts Of CSS
Stars: ✭ 264 (-76.43%)
Mutual labels:  responsive-layout
Devgonga
Devgonga é uma startup com foco em criação de sites e desenvolvimento de sistemas web, moldada para atender a pequenas e médias empresas ao redor de angola. https://devgonga.github.io/devgonga/
Stars: ✭ 41 (-96.34%)
Mutual labels:  responsive-layout
React Container Query
📦 Modular responsive component
Stars: ✭ 788 (-29.64%)
Mutual labels:  responsive-layout
React Native Responsive Grid
Bringing the Web's Responsive Design to React Native
Stars: ✭ 369 (-67.05%)
Mutual labels:  responsive-layout

Help with maintenance would be appreciated!

If interested please send me an email: [email protected]

Contents

react-native-responsive-screen

npm version npm

react-native-responsive-screen is a small library that provides 2 simple methods so that React Native developers can code their UI elements fully responsive. No media queries needed.

It also provides an optional third method for screen orientation detection and automatic rerendering according to new dimensions.

Give it a try and make your life simpler!

Check out this medium article to see the power of the library! 🚀

Installation

npm install react-native-responsive-screen --save

Usage

  • After the package has installed, when application loads (in real device and/or emulator), it detects the screen's width and height. I.e. for Samsung A5 2017 model it detects width: 360DP and height: 640DP (these are the values without taking into account the device's scale factor).
  • The package exposes 2 basic methods: widthPercentageToDP and heightPercentageToDP. Their names essentially mean that you can supply a "percentage like" string value to each method and it will return the DP (indipendent pixel) that correspond to the supplied percentage of current screen's width/height respectivelly. I.e. for Samsung A5 2017, if we supply to a CSS box: width: widthPercentageToDP('53%'), the rendered style will be width: 190.8 DP. Check example number 1 for how to use them.
  • Methods widthPercentageToDP and heightPercentageToDP can be used for any style (CSS) property that accepts DP as value. DP values are the ones of type number over the props mentioned in RN docs: View style props, Text style props, Image style props, Layout props and Shadow props. Use the exposed methods for all of the type number properties used in your app in order to make your app fully responsive for all screen sizes.
  • You can also provide decimal values to these 2 methods, i.e. font-size: widthPercentageToDP('3.75%').
  • The package methods can be used with or without flex depending on what you want to do and how you choose to implement it.
  • The suggested approach is to start developing from larger screens (i.e. tablets). That way you are less prone to forget adding responsive values for all properties of type number. In any case, when your screen development is done, you should test it over a big range of different screens as shown below in the How do I know it works for all devices ? section.
  • There are 2 more methods to use if you want to support responsiveness along with orientation change. These are listenOrientationChange and removeOrientationListener. To see how to use them, check example number 3.
  • You can use this package along with styled-components. To see how to do that, check example number 2.

Updates 🚀

  • v1.4.0 onwards: The library now has flowtype support. Types should work out of the box, no additional setup needed.
  • widthPercentageToDP and heightPercentageToDP methods accept numeric values as well from version 1.2.1 onwards. That being said a width of 53% can now be written both width: widthPercentageToDP('53%') and width: widthPercentageToDP(53).

Examples

1. How to use with StyleSheet.create() and without orientation change support

import {widthPercentageToDP as wp, heightPercentageToDP as hp} from 'react-native-responsive-screen';

class Login extends Component {
  render() {
    return (
      <View style={styles.container}>
        <View style={styles.textWrapper}>
          <Text style={styles.myText}>Login</Text>
        </View>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: { flex: 1 },
  textWrapper: {
    height: hp('70%'), // 70% of height device screen
    width: wp('80%')   // 80% of width device screen
  },
  myText: {
    fontSize: hp('5%') // End result looks like the provided UI mockup
  }
});

export default Login;

You can find a working example of this over the related example repository

2. How to use with StyleSheet.create() and with orientation change support

Check the README of the related example repository

3. How to use with styled components

Check the README of the related example repository

How do I know it works for all devices ?

As mentioned in "How to Develop Responsive UIs with React Native" article, this solution is already in production apps and is tested with a set of Android, iOS emulators of different screen specs, in order to verify that we always have the same end result.

Example:

The 4 blue tiles at the bottom half of the screen should take over 98% of the screen’s width in dp and 10% of the screen’s height in dp always:

Smartphones

Tablets

License

MIT

Pull

Pull requests are welcome! Please make the PR to development branch though and not master. Thanks.

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].