react-native-sc-design-system
v1.0.0
Published
## Getting started
Downloads
2
Maintainers
Readme
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-system
and addRNDesignSystem.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNDesignSystem.a
to 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.sln
innode_modules/@dino/react-native-design-system/windows/RNDesignSystem.sln
folder to their solution, reference from their app. - Open up your
MainPage.cs
app
- Add
using Design.System.RNDesignSystem;
to the usings at the top of the file - Add
new RNDesignSystemPackage()
to theList<IReactPackage>
returned by thePackages
method
Usage
import RNDesignSystem from '@dino/react-native-design-system';
// TODO: What to do with the module?
RNDesignSystem;