@one-am/expo-ios-color-picker
v0.3.1
Published
A module that wraps iOS' native color picker.
Downloads
5
Readme
expo-ios-color-picker
A module that wraps iOS' native color picker.
Warning: This module only works with Expo projects and iOS versions 14.0 and above. On Android, this module will do nothing.
Installation
npx expo install @one-am/expo-ios-color-picker expo-build-properties
You also need to set the iOS deployment target to 14.0 or higher in your app.json
:
{
"expo": {
"plugins": [
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "14.0"
}
}
]
]
}
}
Sample Usage
import {
ExpoIosColorPicker,
type ColorPickerValue,
} from '@one-am/expo-ios-color-picker';
import { useState } from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
const [color, setColor] = useState<ColorPickerValue>(undefined);
return (
<View style={styles.container}>
<Text style={{ alignSelf: 'center' }}>
Selected color:{' '}
<Text style={{ fontWeight: 'bold' }}>{String(color)}</Text>
</Text>
<ExpoIosColorPicker
label={'Color'}
defaultValue={'rgba(255, 0, 0, 1)'}
style={{ height: 100 }}
onChange={({ nativeEvent: { color } }) => {
setColor(color);
}}
/>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'stretch',
justifyContent: 'center',
padding: 20,
},
});