Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-native-palette-picker
Advanced tools
Android Color-palette API implementation for React Native Apps
Android Color-palette API implementation for React Native Apps
npm
or yarn
with npm
:
npm install react-native-palette-picker
with yarn
:
yarn add react-native-palette-picker
import React from 'react'
import { getPalette, type ImageColorsResult} from 'react-native-palette-picker';
const useImageColors = () => {
const [colors, setColors] = React.useState<ImageColorsResult>(null);
const [err, setErr] = React.useState<unknown>();
React.useEffect(() => {
const imgUri = "https://i.imgur.com/RCRf1Sx.jpeg";
(async () => {
try {
const res = await getPalette(imgUri, {
fallback: '#ff0000',
fallbackTextColor: '#ffffff',
});
setColors(res);
} catch (error) {
setErr(error);
}
})();
}, []);
return colors
}
getPalette(source: string | number, config?: Config): Promise<ImageColorsResult>
uri
A string which can be:
URL:
Local file:
const img = require('../assets/img.jpg');
Base64:
const base64 = 'data:image/jpeg;base64,/9j/4Ri...';
The mime type prefix for base64 is required (e.g. data:image/png;base64).
Config?
The config object is optional.
Property | Description | Type | Default |
---|---|---|---|
fallback | If a color property couldn't be retrieved, it will default to this hex color string | string | "#000000" |
fallbackTextColor | Text color used when getting color fails.(titleTextColor,bodyTextColor). Must be hex | string | "#FFFFFF" |
ImageColorsResult
Property | Type |
---|---|
dominant | string |
vibrant | string |
darkVibrant | string |
lightVibrant | string |
darkMuted | string |
lightMuted | string |
muted | string |
titleTextColor | string |
bodyTextColor | string |
See the contributing guide to learn how to contribute to the repository and the development workflow.
If you are experienced with iOS development and would like to contribute, please feel free to submit pull requests or open issues related to iOS support. Your contributions will be greatly appreciated and will help make this library more versatile.
MIT
Made with create-react-native-library
FAQs
Android Color-palette API implementation for React Native Apps
We found that react-native-palette-picker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.