![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-checkbox-group
Advanced tools
React native checkbox group component
npm install --save react-native-checkbox-group
import CheckboxGroup from 'react-native-checkbox-group'
<CheckboxGroup
callback={(selected) => { console.log(selected) }}
iconColor={"#00a2dd"}
iconSize={30}
checkedIcon="ios-checkbox-outline"
uncheckedIcon="ios-square-outline"
checkboxes={[
{
label: "first", // label for checkbox item
value: 1, // selected value for item, if selected, what value should be sent?
selected: true // if the item is selected by default or not.
},
{
label: "second",
value: 2
},
]}
labelStyle={{
color: '#333'
}}
rowStyle={{
flexDirection: 'row'
}}
rowDirection={"column"}
/>
Prop | Type | Description |
---|---|---|
callback | Function | whenever user selects or changes selections it will be called. |
iconColor | String | icon color for checked/unchecked icons and search icon also border color of search bar |
iconSize | Integer | icon size for checked/unchecked icons |
checkedIcon | String | selected/checked icon name (react-native-vector-icons/Ionicon) |
uncheckedIcon | String | unselected/unchecked icon name (react-native-vector-icons/Ionicon) |
checkboxes | Object | checkboxes. see the example. |
labelStyle | Object | styles for checkbox label |
rowStyle | Object | styles for each checkbox |
rowDirection | String | column or row. how to list checkboxes |
Ata S.Mohammadi. ataomega@gmail.com
FAQs
React native checkbox group component
The npm package react-native-checkbox-group receives a total of 61 weekly downloads. As such, react-native-checkbox-group popularity was classified as not popular.
We found that react-native-checkbox-group 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.