react-native-color-picker-light
This color picker component for React Native is designed for IoT light controlling function. Therefore we provide two mode. One is for white light mode, another is for color light mode.
npm install react-native-color-picker-light
or
yarn add react-native-color-picker-light
and install cocoapods
cd ios
pod install
Because this library is written by Swift, you have to create Bridge-Header.
const picker = useRef();
<ColorPicker
ref={picker}
type="color"
style={{ width: 200, height: 200 }}
onColorChange={color => {
console.log('color:', color);
}}
/>
picker.current.setColor('#f0ce78');
type
Used to choose which type of picker you want.
Type | Required | default |
---|---|---|
color | white | No |
onInit
Callback that is called when picker is ready to use. You should setColor after the picker finished.
Type | Required | default |
---|---|---|
function | No | null |
onColorChange
Callback that is called when the user select a color.
Type | Required | default |
---|---|---|
function | No | null |
Author: JimmyTai
GitHub: https://github.com/JimmyTai/react-native-color-picker-light
#react-native #programming