react-native-bouncy-checkbox
react-native-bouncy-checkbox copied to clipboard
Fully customizable animated bouncy checkbox for React Native
Bumps [eslint](https://github.com/eslint/eslint) from 8.21.0 to 8.22.0. Release notes Sourced from eslint's releases. v8.22.0 Features 2b97607 feat: Implement caching for FlatESLint (#16190) (Nicholas C. Zakas) fd5d3d3 feat: add methodsIgnorePattern option to...
Trying to activate the checkbox by reference an error occurs, is informed that the onPress method does not exist. 
So I am using react-hook-form for my getting value ``` ( { Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success); onChange(value); }} disableBuiltInState ref={(ref: any) => (bouncyCheckboxRef = ref)} fillColor={colors.buttonPrimary} size={18} unfillColor={colors.background} style={{ marginTop: 10, marginLeft: 5...
https://github.com/WrathChaos/react-native-bouncy-checkbox#advanced-custom-usage ``` ```
https://github.com/WrathChaos/react-native-bouncy-checkbox#FAQ ``` iconStyle={{ borderRadius: 0, // to make it a little round increase the value accordingly }} innerIconStyle={{
I have a requirement to add multicolour text to checkbox. I have achieved the same, but it always shows a warning 'Warning: Each child in a list should have a...
hey, thanks for this package it looks great! I've added it to a react native web project and the checkbox seems to toggle state correctly but no check icon is...
my code: ```javascript /* some code*/ {this.state.list.map((item, index) => ( )} ``` If i write paddingHorizontal, the text will be squeezed out.  How to solve this problem Thanks...
@WrathChaos I have a login screen (see below for source code) where I am disabling a login button until the user accepts a EULA agreement by clicking the checkbox. The...