You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| text | string | undefined | set the checkbox's text |
82
-
| textComponent |component | undefined | set the checkbox's text by a React Component|
82
+
| textComponent |component | undefined | set the checkbox's text by a React Component |
83
83
| onPress | function | null | set your own onPress functionality after the bounce effect, callback receives the next `isChecked` boolean if disableBuiltInState is false |
84
84
| disableText | boolean | false | if you want to use checkbox without text, you can enable it |
85
85
| size | number | 25 | size of `width` and `height` of the checkbox |
@@ -188,7 +188,6 @@ export default App;
188
188
189
189
We have also this library's checkbox group library as well :) Please take a look
190
190
191
-
192
191
## FAQ
193
192
194
193
<b>How to disable strikethrough?</b>
@@ -200,6 +199,7 @@ textStyle={{
200
199
textDecorationLine:"none",
201
200
}}
202
201
```
202
+
203
203
<b>How to make square checkbox?</b>
204
204
205
205
- Simply use the `iconStyle` prop and set the `borderRadius` to `0`
@@ -209,6 +209,7 @@ iconStyle={{
209
209
borderRadius:0, // to make it a little round increase the value accordingly
210
210
}}
211
211
```
212
+
212
213
### Future Plans
213
214
214
215
- [x] ~~LICENSE~~
@@ -217,6 +218,7 @@ iconStyle={{
217
218
- [x] ~~Synthetic Press Functionality~~
218
219
- [x] ~~Disable built-in check state~~
219
220
- [x] ~~React Native Bouncy Checkbox Group Library Extension~~
221
+
- [ ] Better Documentation | Separation of Documentation
0 commit comments