Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@reason-react-native/checkbox
Advanced tools
ReScript bindings for @react-native-community/checkbox.
@reason-react-native/checkbox
ReScript / Reason bindings for
@react-native-community/react-native-checkbox
.
The module will be exposed as ReactNativeCheckbox
.
Version x.y.z of @reason-react-native/checkbox
is intended to be compatible
with version x.y.z of @react-native-community/react-native-checkbox
.
When
@react-native-community/react-native-checkbox
is properly installed & configured by following their installation instructions,
you can install the bindings:
npm install @reason-react-native/checkbox
# or
yarn add @reason-react-native/checkbox
@reason-react-native/checkbox
should be added to bs-dependencies
in your
bsconfig.json
. For example,
{
//...
"bs-dependencies": [
"reason-react",
"reason-react-native",
// ...
+ "@reason-react-native/checkbox"
],
//...
}
CheckBoxEvent.t
Assuming checkboxEvent
is CheckBoxEvent.t
, you can access
checkboxEvent.nativeEvent.target // => int
checkboxEvent.nativeEvent.value // => bool
value
represents value of the checkbox as updated by the event.
element
Type to be used in ref
and with NativeMethods
, as with other components in
React Native bindings.
ref
is an alias for React.Ref.t(Js.nullable(element))
.
All props are optional.
value: bool
Value of the checkbox. When true
, checkbox will be checked. Default value is
false
.
onChange: checkBoxEvent => unit
Returns a native event.
onValueChange
Returns the new bool
value.
testID: string
Used to locate this view in end-to-end tests.
disabled: bool
When true
, user will not be able to toggle the checkbox. Default value is
false
.
tintColors
tintColors:
(~_true: int=?, ~_false: int=?, unit) => tintColors
Value for _true
will be used when the checkbox is checked, and value for
_false
will be used when it is not checked.
lineWidth: float
The width of the lines of the check mark and box. Defaults to 2.0
.
hideBox: bool
Control if the box should be hidden or not. Defaults to false
boxType: `circle or `square
The type of box to use. Defaults to `circle
tintColor: Color.t
The color of the box when the checkbox is Off. Defaults to #aaaaaa
onCheckColor: Color.t
The color of the check mark when it is On. Defaults to #007aff
onFillColor: Color.t
The color of the inside of the box when it is On. Defaults to transparent
onTintColor: Color.t
The color of the line around the box when it is On. Defaults to #007aff
animationDuration: float
The duration in seconds of the animations. Defaults to 0.5
onAnimationType: `stroke or `fill or `bounce or `flat or `oneStroke or `fade
The type of animation to use when the checkbox gets checked. Defaults to
`stroke
offAnimationType: `stroke or `fill or `bounce or `flat or `oneStroke or `fade
The type of animation to use when the checkbox gets unchecked. Defaults to
`stroke
View
propsRefer to
@reason-react-native/react-native
documentation.
Check the changelog for more information about recent releases.
Read the contribution guidelines before contributing.
We want this community to be friendly and respectful to each other. Please read our full code of conduct so that you can understand what actions will and will not be tolerated.
0.5.1 - 2020-11-17
Fix npm description
FAQs
ReScript bindings for @react-native-community/checkbox.
We found that @reason-react-native/checkbox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.