1.0.0 • Published 4 years ago
react-native-sc-design-system v1.0.0
react-native-design-system
Getting started
$ npm install @dino/react-native-design-system --save
Mostly automatic installation
$ react-native link @dino/react-native-design-system
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜@dino/react-native-design-systemand addRNDesignSystem.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNDesignSystem.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNDesignSystemPackage;to the imports at the top of the file - Add
new RNDesignSystemPackage()to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:include ':@dino/react-native-design-system' project(':@dino/react-native-design-system').projectDir = new File(rootProject.projectDir, '../node_modules/@dino/react-native-design-system/android') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':@dino/react-native-design-system')
Windows
- In Visual Studio add the
RNDesignSystem.slninnode_modules/@dino/react-native-design-system/windows/RNDesignSystem.slnfolder to their solution, reference from their app. - Open up your
MainPage.csapp
- Add
using Design.System.RNDesignSystem;to the usings at the top of the file - Add
new RNDesignSystemPackage()to theList<IReactPackage>returned by thePackagesmethod
Usage
import RNDesignSystem from '@dino/react-native-design-system';
// TODO: What to do with the module?
RNDesignSystem;1.0.0
4 years ago