image-color-picker
v1.0.0
Published
## Getting started
Downloads
84
Readme
image-color-picker
Getting started
$ npm install image-color-picker --save
Mostly automatic installation
$ react-native link image-color-picker
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜image-color-picker
and addRNImageColorPicker.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNImageColorPicker.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.RNImageColorPickerPackage;
to the imports at the top of the file - Add
new RNImageColorPickerPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':image-color-picker' project(':image-color-picker').projectDir = new File(rootProject.projectDir, '../node_modules/image-color-picker/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':image-color-picker')
Windows
- In Visual Studio add the
RNImageColorPicker.sln
innode_modules/image-color-picker/windows/RNImageColorPicker.sln
folder to their solution, reference from their app. - Open up your
MainPage.cs
app
- Add
using Com.Reactlibrary.RNImageColorPicker;
to the usings at the top of the file - Add
new RNImageColorPickerPackage()
to theList<IReactPackage>
returned by thePackages
method
Usage
import RNImageColorPicker from 'image-color-picker';
// TODO: What to do with the module?
RNImageColorPicker;