Skip to content

Files

Latest commit

author
vitalets
Jul 3, 2018
2b67ff5 · Jul 3, 2018

History

History

How to run examples

  1. Create new react-native project
react-native init ExtendedStyleSheetExample
cd ExtendedStyleSheetExample
  1. Install react-native-extended-stylesheet
npm i react-native-extended-stylesheet
  1. Change index.ios.js and index.android.js to:
import {AppRegistry} from 'react-native';
import App from 'react-native-extended-stylesheet/examples/simple/app';
AppRegistry.registerComponent('ExtendedStyleSheetExample', () => App);