![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-native-customizable-checkbox
Advanced tools
A simple and fully customizable React Native Checkbox component.
This is a React-Native Checkbox component that you can freely modify its styles.
To install just input the following command:
npm i react-native-customizable-checkbox
or
yarn add react-native-customizable-checkbox
//...
state = {
check: false,
}
handleChange = () => {
console.log("check!")
}
render(){
return (
<CheckBox
label="Check"
value={this.state.check} // required
onChangeValue={() => this.handleChange()} //required
/>
)
}
//...
state = {
check: false,
}
handleChange = () => {
console.log("check!")
}
render(){
return (
<Checkbox
label="Check"
// isContainerClickable={true} // (default false), when true, clicks on checkbox container will change it's state
// useNativeDriver={true} // (default false)
// checkImage={pathToImage} image for check mark
// colorActive={"#0ff"} hex color when checkbox is marked
// colorInactive={"#fff"} hex color when checkbox is unmarked
// boxStyle={yourBoxStyles} your custom style to the box
// containerStyle={yourContainerStyles} your custom style for the whole container
// textStyle={yourTextStyles} your custom style for the label
value={this.state.check} // required
onChangeValue={() => this.handleChange()} //required
/>
)
}
import check from '../assets/images/yourImage';
// ...
checkImage = {check};
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
FAQs
A simple and fully customizable React Native Checkbox component.
The npm package react-native-customizable-checkbox receives a total of 0 weekly downloads. As such, react-native-customizable-checkbox popularity was classified as not popular.
We found that react-native-customizable-checkbox 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.