Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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);