Can't show the checkmark
See original GitHub issueHi, and thank you for the awesome library! Great work.
I can’t seem to make the checkmark appear, I either have an empty round icon or a filled one, but never see the checkmark.
I’m using : “react-native-bouncy-checkbox”: “^2.1.1”, “react-native”: “^0.62.2” Here is my code :
<BouncyCheckbox
isChecked={isReady}
textStyle={{
textDecorationLine: "none",
}}
size={25}
fillColor="#0075FF"
unfillColor="#FFFFFF"
text="some text"
iconStyle={{ borderColor: "#0075FF" }}
onPress={() => {
this.setState({
isReady: !isReady
})
}}
/>
Would you have any idea what I’m doing wrong? Thank you very much for your help !!!
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
How to enable checkmark for comments? - Adobe Support
Solution 2: Show checkmark for comments in the current document · Select a comment in the Comments list. · From the options menu...
Read more >Insert a check mark or tick mark in Word - Microsoft Support
Insert a check mark or tick mark in Word · Place your cursor at the spot where you want to insert the checkmark....
Read more >Can't see checkmarks in Settings : r/firefox - Reddit
The checkboxes in settings does not show check marks, no matter which theme I try. All checkboxes are always unchecked, even if it's...
Read more >Custom checkmark not showing - Stack Overflow
You have input:check ~ .checkmark in the CSS, but this will ony work if the .checkmark comes after the input in the source....
Read more >15 Ways to Add Checkmarks in Microsoft Excel
Type the word check and it will search and show all the checkmark emoji's and you can click on any of them to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
If you need any other help, feel free to go 😃
Have fun! @adrienfloor
My bad, updating react-native version made it work. Closing the issue, thank you very much for your help 🙌🏼