react-native-dominant-color
Getting started
$ npm install react-native-dominant-color --save
Mostly automatic installation
$ react-native link react-native-dominant-color
Manual installation
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
import cl.hasaezs.rndominantcolor.RNDominantColorPackage;
to the imports at the top of the file
- Add new RNDominantColorPackage()
to the list returned by the getPackages()
method- Append the following lines to
android/settings.gradle
:
3. Insert the following lines inside the dependencies block in
android/app/build.gradle`:
```compile project(':react-native-dominant-color')
```Usage
import React, { Component } from 'react';
import { StyleSheet, View } from 'react-native';
import { colorsFromUrl } from 'react-native-dominant-color';
const imageUrl = 'https://source.unsplash.com/random/800x600';
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center'
},
image: {
width: 300,
height: 300,
borderRadius: 10
}
});
class Example extends Component {
constructor() {
super();
this.state = {
color: '#ffffff',
};
}
componentWillMount() {
let self = this;
colorsFromUrl(imageUrl, (err, colors) => {
if(!err) {
self.setState({ color: colors.averageColor });
}
});
}
render() {
return (
<View style={[styles.container, {backgroundColor: this.state.color }]}>
<Image style={styles.image} source={{ uri: imageUrl}} />
</View>
);
}
}
API
Methods
colorsFromUrl(imageUrl, callback)
: Callback returns an object with the prominent colors from the image. Object properties areaverageColor
,dominantColor
,vibrantColor
,darkVibrantColor
andlightVibrantColor
. If some color doesn't exist will return#CCCCCC
.