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